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: '退款中' }, }