|
@@ -437,7 +437,7 @@
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
cacheKeyUrl: '202605181721-wt-outbound-table',
|
|
cacheKeyUrl: '202605181721-wt-outbound-table',
|
|
|
- newColumns: [], // 动态表头
|
|
|
|
|
|
|
+ dColumns: [], // 动态表头
|
|
|
goodsLists: [], // 商品列表
|
|
goodsLists: [], // 商品列表
|
|
|
productList: [], // 产品列表
|
|
productList: [], // 产品列表
|
|
|
showPackingList: [], // 展示的包装列表
|
|
showPackingList: [], // 展示的包装列表
|
|
@@ -498,7 +498,8 @@
|
|
|
},
|
|
},
|
|
|
llrLsit: [],
|
|
llrLsit: [],
|
|
|
isPrice: 1,
|
|
isPrice: 1,
|
|
|
- showLocked: false
|
|
|
|
|
|
|
+ showLocked: false,
|
|
|
|
|
+ tabMixinsInit: false
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
computed: {
|
|
computed: {
|
|
@@ -566,7 +567,7 @@
|
|
|
);
|
|
);
|
|
|
|
|
|
|
|
// 动态列
|
|
// 动态列
|
|
|
- this.newColumns.forEach(item => {
|
|
|
|
|
|
|
+ this.dColumns.forEach(item => {
|
|
|
columns.push({
|
|
columns.push({
|
|
|
label: item.label,
|
|
label: item.label,
|
|
|
prop: item.prop,
|
|
prop: item.prop,
|
|
@@ -786,7 +787,8 @@
|
|
|
showOverflowTooltip: true
|
|
showOverflowTooltip: true
|
|
|
};
|
|
};
|
|
|
});
|
|
});
|
|
|
- this.newColumns = [...newRes];
|
|
|
|
|
|
|
+ this.dColumns = [...newRes];
|
|
|
|
|
+ this.getColumns();
|
|
|
});
|
|
});
|
|
|
},
|
|
},
|
|
|
userSlected(data) {
|
|
userSlected(data) {
|