|
@@ -109,6 +109,7 @@
|
|
|
<a-col span="22">
|
|
|
<a-row>
|
|
|
<a-col span="4">箭牌滤清器:{{ (totalData && (totalData.jpLqqAmount || totalData.jpLqqAmount==0)) ? totalData.jpLqqAmount : '--' }}</a-col>
|
|
|
+ <a-col span="4">箭牌变速箱滤清器:{{ (totalData && (totalData.jpBsxLqqAmount || totalData.jpBsxLqqAmount==0)) ? totalData.jpBsxLqqAmount : '--' }}</a-col>
|
|
|
<a-col span="4">箭牌雨刮片:{{ (totalData && (totalData.jpYgpAmount || totalData.jpYgpAmount==0)) ? totalData.jpYgpAmount : '--' }}</a-col>
|
|
|
<a-col span="4">箭牌喇叭:{{ (totalData && (totalData.jpLbAmount || totalData.jpLbAmount==0)) ? totalData.jpLbAmount : '--' }}</a-col>
|
|
|
<a-col span="4">箭牌刹车片:{{ (totalData && (totalData.jpScpAmount || totalData.jpScpAmount==0)) ? totalData.jpScpAmount : '--' }}</a-col>
|
|
@@ -116,10 +117,12 @@
|
|
|
<a-col span="4">冠牌滤清器:{{ (totalData && (totalData.gpLqqAmount || totalData.gpLqqAmount==0)) ? totalData.gpLqqAmount : '--' }}</a-col>
|
|
|
<a-col span="4">冠牌雨刮片:{{ (totalData && (totalData.gpYgpAmount || totalData.gpYgpAmount==0)) ? totalData.gpYgpAmount : '--' }}</a-col>
|
|
|
<a-col span="4">冠牌刹车片:{{ (totalData && (totalData.gpScpAmount || totalData.gpScpAmount==0)) ? totalData.gpScpAmount : '--' }}</a-col>
|
|
|
+ <a-col span="4">稳升点火线圈:{{ (totalData && (totalData.wsDhxqAmount || totalData.wsDhxqAmount==0)) ? totalData.wsDhxqAmount : '--' }}</a-col>
|
|
|
+ <a-col span="4">稳升灯泡:{{ (totalData && (totalData.wsDpAmount || totalData.wsDpAmount==0)) ? totalData.wsDpAmount : '--' }}</a-col>
|
|
|
<a-col span="4">汇箭:{{ (totalData && (totalData.hjAmount || totalData.hjAmount==0)) ? totalData.hjAmount : '--' }}</a-col>
|
|
|
<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">TBU刹车片:{{ (totalData && (totalData.tbuScpAmount || totalData.tbuScpAmount==0)) ? totalData.tbuScpAmount : '--' }}</a-col>
|
|
|
+ <a-col span="4">TBU刹车油:{{ (totalData && (totalData.tbuScyAmount || totalData.tbuScyAmount==0)) ? totalData.tbuScyAmount : '--' }}</a-col>
|
|
|
<a-col span="4">TBU-P:{{ (totalData && (totalData.tbupAmount || totalData.tbupAmount==0)) ? totalData.tbupAmount : '--' }}</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>
|
|
@@ -226,6 +229,13 @@ export default {
|
|
|
width: 80,
|
|
|
customRender: function (text) { return (text || text == 0) ? ('¥' + text) : '--' }
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '变速箱滤清器',
|
|
|
+ dataIndex: 'jpBsxLqqAmount',
|
|
|
+ align: 'center',
|
|
|
+ width: 80,
|
|
|
+ customRender: function (text) { return (text || text == 0) ? ('¥' + text) : '--' }
|
|
|
+ },
|
|
|
{
|
|
|
title: '雨刮片',
|
|
|
dataIndex: 'jpYgpAmount',
|
|
@@ -283,6 +293,26 @@ export default {
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '稳升',
|
|
|
+ align: 'center',
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ title: '点火线圈',
|
|
|
+ dataIndex: 'wsDhxqAmount',
|
|
|
+ align: 'center',
|
|
|
+ width: 80,
|
|
|
+ customRender: function (text) { return (text || text == 0) ? ('¥' + text) : '--' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '灯泡',
|
|
|
+ dataIndex: 'wsDpAmount',
|
|
|
+ align: 'center',
|
|
|
+ width: 80,
|
|
|
+ customRender: function (text) { return (text || text == 0) ? ('¥' + text) : '--' }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
{
|
|
|
title: '汇箭',
|
|
|
dataIndex: 'hjAmount',
|
|
@@ -297,19 +327,25 @@ export default {
|
|
|
width: 80,
|
|
|
customRender: function (text) { return (text || text == 0) ? ('¥' + text) : '--' }
|
|
|
},
|
|
|
- {
|
|
|
- title: '稳升',
|
|
|
- dataIndex: 'wsAmount',
|
|
|
- align: 'center',
|
|
|
- width: 80,
|
|
|
- customRender: function (text) { return (text || text == 0) ? ('¥' + text) : '--' }
|
|
|
- },
|
|
|
{
|
|
|
title: 'TBU',
|
|
|
- dataIndex: 'tbuAmount',
|
|
|
align: 'center',
|
|
|
- width: 80,
|
|
|
- customRender: function (text) { return (text || text == 0) ? ('¥' + text) : '--' }
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ title: '刹车片',
|
|
|
+ dataIndex: 'tbuScpAmount',
|
|
|
+ align: 'center',
|
|
|
+ width: 80,
|
|
|
+ customRender: function (text) { return (text || text == 0) ? ('¥' + text) : '--' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '刹车油',
|
|
|
+ dataIndex: 'tbuScyAmount',
|
|
|
+ align: 'center',
|
|
|
+ width: 80,
|
|
|
+ customRender: function (text) { return (text || text == 0) ? ('¥' + text) : '--' }
|
|
|
+ }
|
|
|
+ ]
|
|
|
},
|
|
|
{
|
|
|
title: 'TBU-P',
|