|
@@ -9,12 +9,12 @@
|
|
|
<div ref="tableSearch" class="table-page-search-wrapper">
|
|
|
<a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
|
|
|
<a-row :gutter="15">
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
+ <a-col :md="4" :sm="24">
|
|
|
<a-form-item label="联系人手机">
|
|
|
<a-input allowClear placeholder="请输入联系人手机" v-model.tirm="queryParam.contactPhone"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
+ <a-col :md="4" :sm="24">
|
|
|
<a-form-item label="联系人姓名">
|
|
|
<a-input allowClear placeholder="请输入联系人姓名" v-model.tirm="queryParam.contactName"/>
|
|
|
</a-form-item>
|
|
@@ -35,8 +35,8 @@
|
|
|
allowClear></v-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="6" :offset="18" :sm="24" style="margin-bottom: 10px">
|
|
|
- <div style="float: right;">
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
+ <div>
|
|
|
<a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="approveStore-refresh">查询</a-button>
|
|
|
<a-button style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="approveStore-reset">重置</a-button>
|
|
|
</div>
|
|
@@ -103,14 +103,14 @@ export default {
|
|
|
columns: [
|
|
|
{ title: '序号', dataIndex: 'no', width: '5%', align: 'center' },
|
|
|
{ title: '提交时间', dataIndex: 'applyTime', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '联系人手机', dataIndex: 'contactPhone', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '联系人姓名', dataIndex: 'contactName', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '联系人手机', dataIndex: 'contactPhone', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '联系人姓名', dataIndex: 'contactName', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '门店名称', dataIndex: 'storeName', width: '15%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
- { title: '门店地址', dataIndex: 'addrDetail', width: '16%', align: 'center', scopedSlots: { customRender: 'addr' }, ellipsis: true },
|
|
|
- { title: '门头照片', dataIndex: 'storeImage', width: '8%', align: 'center', scopedSlots: { customRender: 'imageUrl' } },
|
|
|
- { title: '营业执照', dataIndex: 'licenseImage', width: '8%', align: 'center', scopedSlots: { customRender: 'imageUrl' } },
|
|
|
+ { title: '门店地址', dataIndex: 'addrDetail', width: '28%', align: 'center', scopedSlots: { customRender: 'addr' }, ellipsis: true },
|
|
|
+ { title: '门头照片', dataIndex: 'storeImage', width: '6%', align: 'center', scopedSlots: { customRender: 'imageUrl' } },
|
|
|
+ { title: '营业执照', dataIndex: 'licenseImage', width: '6%', align: 'center', scopedSlots: { customRender: 'imageUrl' } },
|
|
|
{ title: '状态', dataIndex: 'auditStatusDictValue', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '操作', scopedSlots: { customRender: 'action' }, width: '12%', align: 'center' }
|
|
|
+ { title: '操作', scopedSlots: { customRender: 'action' }, width: '8%', align: 'center' }
|
|
|
],
|
|
|
// 加载数据方法 必须为 Promise 对象
|
|
|
loadData: parameter => {
|