From 3d014ce4f73847f44eeb76128a1e7a2d9c3c4b15 Mon Sep 17 00:00:00 2001 From: wangxiaowei <1121133807@qq.com> Date: Fri, 26 Dec 2025 15:37:58 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=A2=E8=B4=AD=E5=A5=97=E9=A4=90order.ts?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E6=B7=BB=E5=8A=A0=E9=80=80=E6=AC=BE=E4=B8=AD?= =?UTF-8?q?=E8=BD=AC=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/order.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/utils/order.ts b/src/utils/order.ts index 27d9559..baaf0be 100644 --- a/src/utils/order.ts +++ b/src/utils/order.ts @@ -312,6 +312,7 @@ export enum GroupComboOrderStatus { ToUse = 0, // 待使用 Used = 1, // 已使用 Refunded = 3, // 已退款 + Refunding = 4, // 退款中 } // 本地-团购套餐订单状态 @@ -320,6 +321,7 @@ export enum GroupComboOrderStatusText { ToUse = 'toUse', // 待使用 Used = 'used', // 已使用 Refunded = 'refunded', // 已退款 + Refunding = 'refunding', // 退款中 } export const GroupComboOrderStatusValue: Record = { @@ -327,6 +329,7 @@ export const GroupComboOrderStatusValue: Record = { @@ -338,6 +341,9 @@ export const GroupComboOrderStatusTextValue: Record }, [GroupComboOrderStatus.Refunded]: { title: '退款成功' + }, + [GroupComboOrderStatus.Refunding]: { + title: '退款中' }, }