update:修复订单状态order_state_id对应的消息

This commit is contained in:
hufflzp 2025-12-17 16:59:10 +08:00
parent bb1c463b99
commit 26bbc770cb

View File

@ -112,20 +112,30 @@
methods: { methods: {
__, __,
formatStateId(row) { formatStateId(row) {
return row.order_state_id === 2011 return row.order_state_id === 2010
? this.__('待付款')
: row.order_state_id === 2011
? this.__('待订单审核') ? this.__('待订单审核')
: row.order_state_id === 2012
? this.__('待发货')
: row.order_state_id === 2013 : row.order_state_id === 2013
? this.__('待财务审核') ? this.__('待财务审核')
: row.order_state_id === 2014
? this.__('待配货')
: row.order_state_id === 2020 : row.order_state_id === 2020
? this.__('待配货/待出库审核')
: row.order_state_id === 2030
? this.__('待发货') ? this.__('待发货')
: row.order_state_id === 2030
? this.__('待发货/待收货确认')
: row.order_state_id === 2040 : row.order_state_id === 2040
? this.__('已发货/待收货确认') ? this.__('已发货/待收货确认')
: row.order_state_id === 2050
? this.__('已签收')
: row.order_state_id === 2060 : row.order_state_id === 2060
? this.__('已完成/已签收;') ? this.__('已完成/已签收;')
: row.order_state_id === 2010 : row.order_state_id === 2070
? this.__('待付款') ? this.__('已取消/已作废')
: row.order_state_id === 2080
? this.__('自提')
: this.__('已取消/已作废') : this.__('已取消/已作废')
}, },
showTable(row) { showTable(row) {