|
@@ -61,8 +61,9 @@
|
|
|
</template>
|
|
|
<!-- 地址 -->
|
|
|
<template slot="addr" slot-scope="text, record">
|
|
|
- <div>
|
|
|
- {{ record.addrProvinceName +'-'+ record.addrCityName +'-'+ record.addrDistrictName +'-'+ record.addrDetail }}
|
|
|
+ <div style="word-break:break-all;">
|
|
|
+ <div>{{ record.addrProvinceName +'-'+ record.addrCityName +'-'+ record.addrDistrictName }}</div>
|
|
|
+ <div>{{ record.addrDetail }}</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<!-- 操作 -->
|
|
@@ -99,10 +100,10 @@ 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: '14%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
- { title: '门店地址', dataIndex: 'addrDetail', width: '15%', align: 'center', scopedSlots: { customRender: 'addr' }, ellipsis: true },
|
|
|
+ { title: '门店名称', dataIndex: 'storeName', width: '12%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
+ { title: '门店地址', dataIndex: 'addrDetail', width: '14%', align: 'center', scopedSlots: { customRender: 'addr' }, ellipsis: true },
|
|
|
{ title: '汽配商邀请码', dataIndex: 'inviteCode', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '邀请码关联汽配商', dataIndex: 'dealerName', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '邀请码关联汽配商', dataIndex: 'dealerName', width: '11%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ 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 || '--' } },
|