团购套餐order.ts文件添加退款中转单
This commit is contained in:
@ -312,6 +312,7 @@ export enum GroupComboOrderStatus {
|
|||||||
ToUse = 0, // 待使用
|
ToUse = 0, // 待使用
|
||||||
Used = 1, // 已使用
|
Used = 1, // 已使用
|
||||||
Refunded = 3, // 已退款
|
Refunded = 3, // 已退款
|
||||||
|
Refunding = 4, // 退款中
|
||||||
}
|
}
|
||||||
|
|
||||||
// 本地-团购套餐订单状态
|
// 本地-团购套餐订单状态
|
||||||
@ -320,6 +321,7 @@ export enum GroupComboOrderStatusText {
|
|||||||
ToUse = 'toUse', // 待使用
|
ToUse = 'toUse', // 待使用
|
||||||
Used = 'used', // 已使用
|
Used = 'used', // 已使用
|
||||||
Refunded = 'refunded', // 已退款
|
Refunded = 'refunded', // 已退款
|
||||||
|
Refunding = 'refunding', // 退款中
|
||||||
}
|
}
|
||||||
|
|
||||||
export const GroupComboOrderStatusValue: Record<GroupComboOrderStatusText, string | number> = {
|
export const GroupComboOrderStatusValue: Record<GroupComboOrderStatusText, string | number> = {
|
||||||
@ -327,6 +329,7 @@ export const GroupComboOrderStatusValue: Record<GroupComboOrderStatusText, strin
|
|||||||
[GroupComboOrderStatusText.ToUse]: 0,
|
[GroupComboOrderStatusText.ToUse]: 0,
|
||||||
[GroupComboOrderStatusText.Used]: 1,
|
[GroupComboOrderStatusText.Used]: 1,
|
||||||
[GroupComboOrderStatusText.Refunded]: 3,
|
[GroupComboOrderStatusText.Refunded]: 3,
|
||||||
|
[GroupComboOrderStatusText.Refunding]: 4,
|
||||||
}
|
}
|
||||||
|
|
||||||
export const GroupComboOrderStatusTextValue: Record<GroupComboOrderStatus, any> = {
|
export const GroupComboOrderStatusTextValue: Record<GroupComboOrderStatus, any> = {
|
||||||
@ -338,6 +341,9 @@ export const GroupComboOrderStatusTextValue: Record<GroupComboOrderStatus, any>
|
|||||||
},
|
},
|
||||||
[GroupComboOrderStatus.Refunded]: {
|
[GroupComboOrderStatus.Refunded]: {
|
||||||
title: '退款成功'
|
title: '退款成功'
|
||||||
|
},
|
||||||
|
[GroupComboOrderStatus.Refunding]: {
|
||||||
|
title: '退款中'
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user