From 50e358cbff80cd237b5a287f2779fa7b4a62791f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Sat, 7 Mar 2026 16:12:10 +0800 Subject: [PATCH] =?UTF-8?q?fix(shop):=20=E8=A7=A3=E5=86=B3=E5=B7=B2?= =?UTF-8?q?=E9=80=80=E6=AC=BE=E8=AE=A2=E5=8D=95=E4=BB=8D=E5=8F=AF=E5=8F=91?= =?UTF-8?q?=E8=B4=A7=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加了退款状态检查,防止已退款订单执行发货操作 - 确保只有未取消且未退款的订单才能进行发货处理 --- src/views/shop/shopOrder/index.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/shop/shopOrder/index.vue b/src/views/shop/shopOrder/index.vue index 0ea611f..d9313a1 100644 --- a/src/views/shop/shopOrder/index.vue +++ b/src/views/shop/shopOrder/index.vue @@ -176,7 +176,8 @@ v-if=" record.payStatus && record.deliveryStatus === 10 && - !isCancelledStatus(record.orderStatus) + !isCancelledStatus(record.orderStatus) && + !isRefundStatus(record.orderStatus) " >