|
@@ -102,13 +102,14 @@ export default {
|
|
|
disabled: false, // 查询、重置按钮是否可操作
|
|
|
columns: [
|
|
|
{ title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
|
|
|
- { title: '创建时间', dataIndex: 'createDate', width: '11%', align: 'center' },
|
|
|
- { title: '区域', dataIndex: 'subareaName', width: '11%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '分区', dataIndex: 'subareaAreaName', width: '11%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '省仓名称', dataIndex: 'serviceCenterName', width: '20%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
- { title: '省仓客户', dataIndex: 'customerNum', width: '12%', align: 'center', scopedSlots: { customRender: 'customNum' } },
|
|
|
+ { title: '创建时间', dataIndex: 'createDate', width: '10%', align: 'center' },
|
|
|
+ { title: '区域', dataIndex: 'subareaName', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '分区', dataIndex: 'subareaAreaName', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '省仓名称', dataIndex: 'serviceCenterName', width: '18%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
+ { title: '经销商名称', dataIndex: 'dealerName', width: '18%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
+ { title: '省仓客户', dataIndex: 'customerNum', width: '11%', align: 'center', scopedSlots: { customRender: 'customNum' } },
|
|
|
{ title: '省仓状态', scopedSlots: { customRender: 'loginFlag' }, width: '9%', align: 'center' },
|
|
|
- { title: '操作', scopedSlots: { customRender: 'action' }, width: '12%', align: 'center' }
|
|
|
+ { title: '操作', scopedSlots: { customRender: 'action' }, width: '11%', align: 'center' }
|
|
|
],
|
|
|
// 加载数据方法 必须为 Promise 对象
|
|
|
loadData: parameter => {
|