|
|
|
@ -680,6 +680,16 @@ export default {
|
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'stockupStatusName', |
|
|
|
|
label: '备货状态', |
|
|
|
|
type: 3, |
|
|
|
|
values: '', |
|
|
|
|
width: '130', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'orderReceiveStatusName', |
|
|
|
|
label: '入库状态', |
|
|
|
@ -1376,6 +1386,14 @@ export default {
|
|
|
|
|
return item; |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
getDictionaryBiz('order_stockup_status').then(res => { |
|
|
|
|
this.$functions.checkcColumnList('stockupStatusName', this.columnList).checkarr = |
|
|
|
|
res.data.data.map(item => { |
|
|
|
|
item.value = item.dictKey; |
|
|
|
|
item.label = item.dictValue; |
|
|
|
|
return item; |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
searchHide() { |
|
|
|
|
this.search = !this.search; |
|
|
|
|