|
@@ -130,6 +130,36 @@
|
|
|
showOverflowTooltip: true,
|
|
showOverflowTooltip: true,
|
|
|
minWidth: 110
|
|
minWidth: 110
|
|
|
},
|
|
},
|
|
|
|
|
+ {
|
|
|
|
|
+ prop: 'pbomStatus',
|
|
|
|
|
+ label: 'PBOM',
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ showOverflowTooltip: true,
|
|
|
|
|
+ minWidth: 110,
|
|
|
|
|
+ formatter: (row) => {
|
|
|
|
|
+ return row.pbomStatus == 1 ? '有' : '无';
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ prop: 'bomStatus',
|
|
|
|
|
+ label: 'MBOM',
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ showOverflowTooltip: true,
|
|
|
|
|
+ minWidth: 110,
|
|
|
|
|
+ formatter: (row) => {
|
|
|
|
|
+ return row.bomStatus == 1 ? '有' : '无';
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ prop: 'abomStatus',
|
|
|
|
|
+ label: 'ABQM',
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ showOverflowTooltip: true,
|
|
|
|
|
+ minWidth: 110,
|
|
|
|
|
+ formatter: (row) => {
|
|
|
|
|
+ return row.abomStatus == 1 ? '有' : '无';
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
{
|
|
{
|
|
|
prop: 'brandNum',
|
|
prop: 'brandNum',
|
|
|
label: '牌号',
|
|
label: '牌号',
|