|
@@ -157,14 +157,15 @@ export default {
|
|
|
const a = ['', '剔除']
|
|
|
const arr = [
|
|
|
{ title: '编号', dataIndex: 'no', width: '4%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '总部销退单号', dataIndex: 'bizNo', width: '5%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '退货日期', dataIndex: 'bizDate', width: '5%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '客户名称', dataIndex: 'dealerName', width: '10%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
- { title: '全国销售日报', dataIndex: 'countrySalesDay', width: '6%', align: 'center', customRender: function (text) { return a[text] } },
|
|
|
- { title: '项目销售日报1', dataIndex: 'dailyPl', width: '6%', align: 'center', customRender: function (text) { return a[text] } },
|
|
|
- { title: '项目销售日报2', dataIndex: 'dailyPljl', width: '5%', align: 'center', customRender: function (text) { return a[text] } },
|
|
|
- { title: '分区销售日报', dataIndex: 'areaSalesDay', width: '5%', align: 'center', customRender: function (text) { return a[text] } },
|
|
|
- { title: '创建时间', dataIndex: 'createDate', width: '5%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '总部销退单号', dataIndex: 'bizNo', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '退货状态', dataIndex: 'billStatusDictValue', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '退货日期', dataIndex: 'bizDate', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '客户名称', dataIndex: 'dealerName', width: '16%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
+ { title: '全国销售日报', dataIndex: 'countrySalesDay', width: '10%', align: 'center', customRender: function (text) { return a[text] } },
|
|
|
+ { title: '项目销售日报1', dataIndex: 'dailyPl', width: '10%', align: 'center', customRender: function (text) { return a[text] } },
|
|
|
+ { title: '项目销售日报2', dataIndex: 'dailyPljl', width: '10%', align: 'center', customRender: function (text) { return a[text] } },
|
|
|
+ { title: '分区销售日报', dataIndex: 'areaSalesDay', width: '10%', align: 'center', customRender: function (text) { return a[text] } },
|
|
|
+ { title: '创建时间', dataIndex: 'createDate', width: '8%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '操作', scopedSlots: { customRender: 'action' }, width: '6%', align: 'center' }
|
|
|
]
|
|
|
return arr
|