|
@@ -119,6 +119,7 @@
|
|
|
<a-col span="4">德路斯:{{ (totalData && (totalData.dlsAmount || totalData.dlsAmount==0)) ? totalData.dlsAmount : '--' }}</a-col>
|
|
|
<a-col span="4">稳升:{{ (totalData && (totalData.wsAmount || totalData.wsAmount==0)) ? totalData.wsAmount : '--' }}</a-col>
|
|
|
<a-col span="4">TBU:{{ (totalData && (totalData.tbuAmount || totalData.tbuAmount==0)) ? totalData.tbuAmount : '--' }}</a-col>
|
|
|
+ <a-col span="4">布瑞斯:{{ (totalData && (totalData.brsAmount || totalData.brsAmount==0)) ? totalData.brsAmount : '--' }}</a-col>
|
|
|
<a-col span="4">NGK:{{ (totalData && (totalData.ngkAmount || totalData.ngkAmount==0)) ? totalData.ngkAmount : '--' }}</a-col>
|
|
|
<a-col span="4">飞利浦:{{ (totalData && (totalData.flpAmount || totalData.flpAmount==0)) ? totalData.flpAmount : '--' }}</a-col>
|
|
|
<a-col span="4">车仆:{{ (totalData && (totalData.cpAmount || totalData.cpAmount==0)) ? totalData.cpAmount : '--' }}</a-col>
|
|
@@ -126,7 +127,6 @@
|
|
|
<a-col span="4">雷贝斯托:{{ (totalData && (totalData.lbstAmount || totalData.lbstAmount==0)) ? totalData.lbstAmount : '--' }}</a-col>
|
|
|
<a-col span="4">德尔福:{{ (totalData && (totalData.defAmount || totalData.defAmount==0)) ? totalData.defAmount : '--' }}</a-col>
|
|
|
<a-col span="4">巴诺德:{{ (totalData && (totalData.bndAmount || totalData.bndAmount==0)) ? totalData.bndAmount : '--' }}</a-col>
|
|
|
- <a-col span="4">布瑞斯:{{ (totalData && (totalData.brsAmount || totalData.brsAmount==0)) ? totalData.brsAmount : '--' }}</a-col>
|
|
|
<a-col span="6">开单销售单合计金额:{{ (totalData && (totalData.totalAmount || totalData.totalAmount==0)) ? totalData.totalAmount : '--' }}</a-col>
|
|
|
</a-row>
|
|
|
</a-col>
|
|
@@ -280,6 +280,13 @@ export default {
|
|
|
align: 'center',
|
|
|
width: 100,
|
|
|
customRender: function (text) { return (text || text == 0) ? ('¥' + text) : '--' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '布瑞斯',
|
|
|
+ dataIndex: 'brsAmount',
|
|
|
+ align: 'center',
|
|
|
+ width: 100,
|
|
|
+ customRender: function (text) { return (text || text == 0) ? ('¥' + text) : '--' }
|
|
|
}
|
|
|
] },
|
|
|
{ title: '代理品牌',
|
|
@@ -333,13 +340,6 @@ export default {
|
|
|
align: 'center',
|
|
|
width: 100,
|
|
|
customRender: function (text) { return (text || text == 0) ? ('¥' + text) : '--' }
|
|
|
- },
|
|
|
- {
|
|
|
- title: '布瑞斯',
|
|
|
- dataIndex: 'brsAmount',
|
|
|
- align: 'center',
|
|
|
- width: 100,
|
|
|
- customRender: function (text) { return (text || text == 0) ? ('¥' + text) : '--' }
|
|
|
}
|
|
|
] },
|
|
|
{ title: '开单销售单合计金额', width: 200, dataIndex: 'totalAmount', align: 'center', customRender: function (text) { return (text || text == 0) ? ('¥' + text) : '--' } }
|