|
|
@@ -474,7 +474,7 @@
|
|
|
},
|
|
|
{
|
|
|
prop: 'bomStatus',
|
|
|
- label: 'BOM状态',
|
|
|
+ label: 'MBOM状态',
|
|
|
align: 'center',
|
|
|
minWidth: 120,
|
|
|
formatter: (row, column) => {
|
|
|
@@ -482,6 +482,26 @@
|
|
|
},
|
|
|
showOverflowTooltip: true
|
|
|
},
|
|
|
+ {
|
|
|
+ prop: 'pBomStatus',
|
|
|
+ label: 'PBOM状态',
|
|
|
+ align: 'center',
|
|
|
+ minWidth: 120,
|
|
|
+ formatter: (row, column) => {
|
|
|
+ return row.pBomStatus == 1 ? '有' : '无';
|
|
|
+ },
|
|
|
+ showOverflowTooltip: true
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'aBomStatus',
|
|
|
+ label: 'ABOM状态',
|
|
|
+ align: 'center',
|
|
|
+ minWidth: 120,
|
|
|
+ formatter: (row, column) => {
|
|
|
+ return row.aBomStatus == 1 ? '有' : '无';
|
|
|
+ },
|
|
|
+ showOverflowTooltip: true
|
|
|
+ },
|
|
|
{
|
|
|
prop: 'isUnpack',
|
|
|
label: '是否允许拆包',
|