提交 ff4b2de2 authored 作者: 宋雄's avatar 宋雄

0717

上级 fe1652f7
NODE_ENV=development
# VUE_APP_API_BASE_URL='http://192.168.0.118:9999'
# VUE_APP_API_BASE_URL='http://192.168.0.100:9999'
VUE_APP_API_BASE_URL='http://220.203.25.212:9999'
# VUE_APP_API_BASE_URL='http://220.203.25.212:9999/property-central'
VUE_APP_CAS_BASE_URL=http://cas.example.org:8443/cas
......
......@@ -61,7 +61,7 @@
<a-tag v-if="record.onshelfStatus === 'offShelf'" color="red">下架</a-tag>
</span>
<span slot="action" slot-scope="text, record">
<a @click="handleEdit(record)" v-if="record.onshelfStatus == 'offShelf'">编辑</a>
<a @click="handleEdit(record)">编辑</a>
<a-divider type="vertical" />
<a-dropdown>
......
......@@ -5,7 +5,7 @@
<a-row>
<a-col :span="24">
<a-form-model-item label="广告名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="advName">
<a-input v-model="model.advName" placeholder="请输入广告名称" maxLength="50"></a-input>
<a-input v-model="model.advName" placeholder="请输入广告名称" :maxLength="50"></a-input>
</a-form-model-item>
</a-col>
<a-col :span="24">
......
......@@ -103,6 +103,7 @@ const columns = [
title: '收费名称',
dataIndex: 'chargingName',
key: 'chargingName',
align: 'center'
},
{
title: '收费方式',
......@@ -111,38 +112,44 @@ const columns = [
customRender: function (text) {
return filterDictTextByCache('chargingCycle', text)
},
align: 'center'
},
{
title: '授权物业数量',
dataIndex: 'empowerNum',
key: 'empowerNum',
align: 'center'
},
{
title: '授权天数',
dataIndex: 'empowerDays',
key: 'empowerDays',
align: 'center'
},
{
title: '添加人',
dataIndex: 'createBy',
key: 'createBy',
align: 'center'
},
{
title: '收费金额(元)',
dataIndex: 'chargingMoney',
key: 'chargingMoney',
align: 'center'
},
{
title: '创建时间',
dataIndex: 'createTime',
key: 'createTime',
align: 'center'
},
{
title: '审核状态',
dataIndex: 'auditStatus',
scopedSlots: { customRender: 'auditStatus' },
key: 'auditStatus',
align: 'center',
align: 'center'
},
{
title: '冻结状态',
......
......@@ -71,7 +71,7 @@
<a-col :span="24">
<a-form-model-item label="集团介绍" :labelCol="{ xs:{ span: 24 }, sm:{ span: 3 } }" :wrapperCol="wrapperCol"
prop="groupInfo">
<a-textarea v-model="model.groupInfo" placeholder="请输入集团介绍" :auto-size="{ minRows: 3, maxRows: 5 }" />
<a-textarea v-model="model.groupInfo" placeholder="请输入集团介绍" :maxLength="500" :auto-size="{ minRows: 3, maxRows: 5 }" />
</a-form-model-item>
</a-col>
</a-row>
......
......@@ -9,11 +9,21 @@
<j-input placeholder="请输入物业名称" v-model="queryParam.propertyName"></j-input>
</a-form-item>
</a-col>
<a-col :md="8" :sm="10">
<a-form-item label="入驻时间">
<a-range-picker @change="onChange" />
<a-col :md="6" :sm="8">
<a-form-item label="入驻开始时间">
<a-date-picker placeholder="入驻开始时间" v-model="queryParam.createTime_begin"></a-date-picker>
</a-form-item>
</a-col>
<a-col :md="6" :sm="8">
<a-form-item label="入驻结束时间">
<a-date-picker placeholder="入驻结束时间" v-model="queryParam.createTime_end"></a-date-picker>
</a-form-item>
</a-col>
<!-- <a-col :md="8" :sm="10">
<a-form-item label="入驻时间">
<a-range-picker v-model="queryParam.propertyTime" />
</a-form-item>
</a-col> -->
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
<a-col :md="6" :sm="24">
<a-button type="primary" @click="searchQuery">查询</a-button>
......
......@@ -7,8 +7,8 @@
<!-- 搜索区域 -->
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
<a-col :md="12" :sm="8">
<a-form-item label="角色名称" :labelCol="{span: 5}" :wrapperCol="{span: 18, offset: 1}">
<a-col :md="6" :sm="8">
<a-form-item label="角色名称">
<a-input placeholder="" v-model="queryParam.roleName"></a-input>
</a-form-item>
</a-col>
......
......@@ -2,12 +2,12 @@
<div>
<a-form-model ref="form" :model="model" :rules="validatorRules">
<a-form-model-item required prop="username">
<a-input v-model="model.username" size="large" placeholder="请输入帐户名 / admin">
<a-input v-model="model.username" size="large" placeholder="请输入帐户">
<a-icon slot="prefix" type="user" :style="{ color: 'rgba(0,0,0,.25)' }"/>
</a-input>
</a-form-model-item>
<a-form-model-item required prop="password">
<a-input v-model="model.password" size="large" type="password" autocomplete="false" placeholder="请输入密码 / 123456">
<a-input v-model="model.password" size="large" type="password" autocomplete="false" placeholder="请输入密码">
<a-icon slot="prefix" type="lock" :style="{ color: 'rgba(0,0,0,.25)' }"/>
</a-input>
</a-form-model-item>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论