|
@@ -26,7 +26,6 @@
|
|
|
ref="table"
|
|
|
:style="{ height: tableHeight+84.5+'px', wordBreak: 'break-all' }"
|
|
|
size="small"
|
|
|
- rowKey="id"
|
|
|
:columns="columns"
|
|
|
:data="loadData"
|
|
|
:scroll="{ y: tableHeight }"
|
|
@@ -67,10 +66,10 @@ export default {
|
|
|
// 表头
|
|
|
columns: [
|
|
|
{ title: '序号', dataIndex: 'no', width: '5%', align: 'center' },
|
|
|
- { title: '配件经销商(商户名称)', dataIndex: 'dealerEntity.dealerName', width: '25%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
- { title: '联系人', dataIndex: 'dealerEntity.contact', width: '20%', align: 'left', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '联系电话', dataIndex: 'dealerEntity.dealerTelephone', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '合作状态', dataIndex: 'dealerEntity.cooperateFlagDictValue', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '配件经销商(商户名称)', dataIndex: 'dealerName', width: '25%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
+ { title: '联系人', dataIndex: 'contact', width: '20%', align: 'left', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '联系电话', dataIndex: 'contactMobile', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '合作状态', dataIndex: 'cooperateFlagDictValue', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '平台商户号', dataIndex: 'merchantNo', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '操作', width: '10%', align: 'left', scopedSlots: { customRender: 'action' } }
|
|
|
],
|