|
|
@@ -440,6 +440,15 @@
|
|
|
showOverflowTooltip: true,
|
|
|
slot: 'outboundNum'
|
|
|
},
|
|
|
+ {
|
|
|
+ prop: 'inventoryCycle',
|
|
|
+ label: '存货周期(天)',
|
|
|
+ align: 'center',
|
|
|
+ width: 150,
|
|
|
+ sortable: true,
|
|
|
+ showOverflowTooltip: true,
|
|
|
+ hide: this.dimension == 1
|
|
|
+ },
|
|
|
{
|
|
|
prop: 'brandNum',
|
|
|
label: '牌号',
|
|
|
@@ -515,7 +524,7 @@
|
|
|
showOverflowTooltip: true
|
|
|
}
|
|
|
];
|
|
|
- return arr;
|
|
|
+ return arr.filter((item) => !item.hide);
|
|
|
}
|
|
|
},
|
|
|
|