|
@@ -101,8 +101,8 @@ export default {
|
|
|
disabled: false, // 查询、重置按钮是否可操作
|
|
|
exportLoading: false,
|
|
|
columns: [
|
|
|
- { title: '序号', dataIndex: 'no', width: 50, align: 'center',fixed: 'left' },
|
|
|
- { title: '门店', dataIndex: 'salesTargetName', width: 150, align: 'left',fixed: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
+ { title: '序号', dataIndex: 'no', width: 50, align: 'center', fixed: 'left' },
|
|
|
+ { title: '门店', dataIndex: 'salesTargetName', width: 150, align: 'left', fixed: 'left', customRender: function (text) { return text || '--' } },
|
|
|
{
|
|
|
title: '所有品牌',
|
|
|
children: [
|
|
@@ -149,7 +149,7 @@ export default {
|
|
|
{ title: '皮带', dataIndex: 'pdAmount', width: 90, align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|
|
|
{ title: '轮子', dataIndex: 'lzAmount', width: 90, align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|
|
|
{ title: '其他', dataIndex: 'otherAmount', width: 90, align: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } },
|
|
|
- { title: '合计', dataIndex: 'totalAmount', width: 100, align: 'right',fixed: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } }
|
|
|
+ { title: '合计', dataIndex: 'totalAmount', width: 100, align: 'right', fixed: 'right', customRender: function (text) { return ((text || text == 0) ? _this.toThousands(text) : '--') } }
|
|
|
],
|
|
|
// 加载数据方法 必须为 Promise 对象
|
|
|
loadData: parameter => {
|