From 26bbc770cb121fbac5dff4851bf6355b6ce0d4c2 Mon Sep 17 00:00:00 2001 From: hufflzp <1395188856@qq.com> Date: Wed, 17 Dec 2025 16:59:10 +0800 Subject: [PATCH] =?UTF-8?q?update:=E4=BF=AE=E5=A4=8D=E8=AE=A2=E5=8D=95?= =?UTF-8?q?=E7=8A=B6=E6=80=81order=5Fstate=5Fid=E5=AF=B9=E5=BA=94=E7=9A=84?= =?UTF-8?q?=E6=B6=88=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sellerinfo/components/AnalyticsTable.vue | 20 ++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/src/views/order/sellerinfo/components/AnalyticsTable.vue b/src/views/order/sellerinfo/components/AnalyticsTable.vue index 70301a0..b9e53f2 100644 --- a/src/views/order/sellerinfo/components/AnalyticsTable.vue +++ b/src/views/order/sellerinfo/components/AnalyticsTable.vue @@ -112,20 +112,30 @@ methods: { __, formatStateId(row) { - return row.order_state_id === 2011 + return row.order_state_id === 2010 + ? this.__('待付款') + : row.order_state_id === 2011 ? this.__('待订单审核') + : row.order_state_id === 2012 + ? this.__('待发货') : row.order_state_id === 2013 ? this.__('待财务审核') + : row.order_state_id === 2014 + ? this.__('待配货') : row.order_state_id === 2020 - ? this.__('待配货/待出库审核') - : row.order_state_id === 2030 ? this.__('待发货') + : row.order_state_id === 2030 + ? this.__('待发货/待收货确认') : row.order_state_id === 2040 ? this.__('已发货/待收货确认') + : row.order_state_id === 2050 + ? this.__('已签收') : row.order_state_id === 2060 ? this.__('已完成/已签收;') - : row.order_state_id === 2010 - ? this.__('待付款') + : row.order_state_id === 2070 + ? this.__('已取消/已作废') + : row.order_state_id === 2080 + ? this.__('自提') : this.__('已取消/已作废') }, showTable(row) {