|
@@ -58,7 +58,7 @@
|
|
|
bordered>
|
|
|
<!-- 图片 -->
|
|
|
<template slot="imageUrl" slot-scope="text, record">
|
|
|
- <div v-if="text.length">
|
|
|
+ <div v-if="text&&text.length">
|
|
|
<img :src="text" width="30" height="30" class="imageUrl" @click="inited([text])" />
|
|
|
</div>
|
|
|
<span v-else>--</span>
|
|
@@ -66,7 +66,8 @@
|
|
|
<!-- 地址 -->
|
|
|
<template slot="addr" slot-scope="text, record">
|
|
|
<div>
|
|
|
- {{ record.addrProvinceName +'-'+ record.addrCityName +'-'+ record.addrDistrictName +'-'+ record.addrDetail }}
|
|
|
+ {{ record.addrProvinceName +'-'+ record.addrCityName +'-'+ record.addrDistrictName }}
|
|
|
+ <div style="word-wrap: wrap;">{{ record.addrDetail }}</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<!-- 操作 -->
|
|
@@ -106,8 +107,8 @@ export default {
|
|
|
{ title: '提交时间', dataIndex: 'applyTime', width: '10%', 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: '28%', align: 'center', scopedSlots: { customRender: 'addr' }, ellipsis: true },
|
|
|
+ { title: '门店名称', dataIndex: 'storeName', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '门店地址', dataIndex: 'addrDetail', width: '28%', align: 'center', scopedSlots: { customRender: 'addr' } },
|
|
|
{ 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 || '--' } },
|