diff --git a/src/views/oms/order/index.vue b/src/views/oms/order/index.vue index cb8f9df..f0f1b09 100644 --- a/src/views/oms/order/index.vue +++ b/src/views/oms/order/index.vue @@ -144,7 +144,7 @@ @@ -353,6 +353,7 @@ export default { shortcuts: dateUtil.getTimeShort2() }, orderStatusMap: [], + tuiStatusMapList: [], orderTypeMap: [], orderWithdrawMap: [], orderAftersaleMap: [], @@ -455,10 +456,12 @@ export default { async mounted() { this.show = true; const orderStatusMap = await this.getDictionaryByKey('oms_order_status'); + const tuiStatusMap = await this.getDictionaryByKey('oms_aftersale_status'); const orderTypeMap = await this.getDictionaryByKey('oms_order_type'); const orderWithdrawMap = await this.getDictionaryByKey('oms_withdraw_staus'); const orderAftersaleMap = await this.getDictionaryByKey('oms_aftersale_status'); this.orderStatusMap = orderStatusMap; + this.tuiStatusMapList = tuiStatusMap; this.orderTypeMap = orderTypeMap; this.orderWithdrawMap = orderWithdrawMap; this.orderAftersaleMap = orderAftersaleMap;