提交 88984bc3 authored 作者: 赵明's avatar 赵明

小区商铺添加合同 列表搜索调整

上级 7ff38acb
......@@ -94,9 +94,20 @@
:auto-size="{ minRows: 3, maxRows: 5 }" />
</a-form-model-item>
</a-col>
</a-row>
</a-card>
<a-card title="合同附件" style="margin-top: 10px;" >
<a-row>
<a-col :span="24">
<a-form-model-item label="合同附件" :labelCol="{ xs:{ span: 24 }, sm:{ span: 3 } }" :wrapperCol="wrapperCol">
<j-upload v-model="model.contractUrl" ></j-upload>
</a-form-model-item>
</a-col>
</a-row>
</a-card>
<a-card title="商铺管理员">
<a-card title="商铺管理员" style="margin-top: 10px;">
<a-row>
<a-col :span="12">
<a-form-model-item label="管理员账户" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="adminLoginName">
......@@ -124,13 +135,13 @@
</a-row>
</a-card>
<a-card title="商铺二维码" v-if="pageType != 'add'">
<a-card title="商铺二维码" v-if="pageType != 'add'" style="margin-top: 10px;">
<a-row>
<img :src="shopQrcode" alt="商铺二维码" class="shopQrcode">
</a-row>
</a-card>
<a-card title="审核记录" v-if="pageType != 'add'">
<a-card title="审核记录" v-if="pageType != 'add'" style="margin-top: 10px;">
<a-row>
<a-table
ref="table"
......@@ -270,6 +281,7 @@ export default {
addressInfo: [{ required: true, message: '请输入详细地址', trigger: 'blur' }],
logoUrl: [{ required: true, message: '请上传LOGO', trigger: 'change' }],
adminLoginName: [{ required: true, message: '请输入管理员账号', trigger: 'blur' }],
contractUrl: [{ required: true, message: '请上传合同附件', trigger: 'change' }],
adminPassword: [{ required: true, message: '请输入管理员密码', trigger: 'blur' }],
accessAddress: [
{ required: true, message: '请输入访问域名前缀', trigger: 'blur' },
......
......@@ -10,12 +10,17 @@
</a-form-item>
</a-col>
<a-col :md="6" :sm="8">
<a-form-item label="入驻时间">
<a-input placeholder="请选择入驻时间" v-model="queryParam.createTime"></a-input>
</a-form-item>
<a-range-picker
style="width: 100%"
format="YYYY-MM-DD"
:placeholder="['开始时间', '结束时间']"
@change="onDateChange"
@ok="onDateOk"
/>
</a-col>
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
<a-col :md="6" :sm="24">
<a-col :md="8" :sm="24">
<a-button type="primary" @click="searchQuery">查询</a-button>
<a-button style="margin-left: 8px" @click="searchReset">重置</a-button>
</a-col>
......@@ -251,6 +256,14 @@ export default {
handlePerssion(roleId) {
this.$refs.modalUserRole.show(roleId)
},
onDateChange: function (value, dateString) {
console.log(dateString[0],dateString[1]);
this.queryParam.beginDate=dateString[0];
this.queryParam.endDate=dateString[1];
},
onDateOk(value) {
console.log(value);
},
}
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论