From be197e956cbd1cc11b176ce680e3134028c897ac Mon Sep 17 00:00:00 2001 From: BabyBoy <2019108827@qq.com> Date: Fri, 15 Aug 2025 16:00:59 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A2=E5=8D=95=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/oms/order/index.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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;