调试接口
This commit is contained in:
@ -301,17 +301,65 @@ export const TeaRoomPackageOrderStatusTextValue: Record<TeaRoomPackageOrderStatu
|
||||
},
|
||||
}
|
||||
|
||||
// 本地-团购套餐订单状态
|
||||
export enum GroupComboOrderStatus {
|
||||
ToUse = 0, // 待使用
|
||||
Used = 1, // 已使用
|
||||
Refunded = 2, // 已退款
|
||||
}
|
||||
|
||||
// 本地-团购套餐订单状态
|
||||
export enum GroupComboOrderStatusText {
|
||||
All = 'all', // 全部
|
||||
ToUse = 'toUse', // 待使用
|
||||
Used = 'used', // 已使用
|
||||
Refunded = 'refunded', // 已退款
|
||||
}
|
||||
|
||||
export const GroupComboOrderStatusValue: Record<GroupComboOrderStatusText, string | number> = {
|
||||
[GroupComboOrderStatusText.All]: '',
|
||||
[GroupComboOrderStatusText.ToUse]: 0,
|
||||
[GroupComboOrderStatusText.Used]: 1,
|
||||
[GroupComboOrderStatusText.Refunded]: 2,
|
||||
}
|
||||
|
||||
export const GroupComboOrderStatusTextValue: Record<GroupComboOrderStatus, any> = {
|
||||
[GroupComboOrderStatus.ToUse]: {
|
||||
title: '待使用'
|
||||
},
|
||||
[GroupComboOrderStatus.Used]: {
|
||||
title: '交易完成'
|
||||
},
|
||||
[GroupComboOrderStatus.Refunded]: {
|
||||
title: '退款成功'
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
// 抖音状态
|
||||
export enum DouYinOrderStatus {
|
||||
ToUse = 0, // 待使用
|
||||
Used = 1, // 已使用
|
||||
}
|
||||
|
||||
// 抖音订单状态文本
|
||||
export enum DouYinOrderStatusText {
|
||||
All = 'all', // 全部
|
||||
ToUse = 'tousee', // 待使用
|
||||
ToUse = 'toUse', // 待使用
|
||||
Used = 'used', // 已使用
|
||||
}
|
||||
|
||||
export enum DouYinOrderStatus {
|
||||
Pending = 0, // 待付款
|
||||
ToUse = 1, // 待使用
|
||||
Used = 2, // 已使用
|
||||
Refunded = 3, // 已退款
|
||||
}
|
||||
export const DouYinOrderStatusValue: Record<DouYinOrderStatusText, string | number> = {
|
||||
[DouYinOrderStatusText.All]: '',
|
||||
[DouYinOrderStatusText.ToUse]: 0,
|
||||
[DouYinOrderStatusText.Used]: 1,
|
||||
}
|
||||
|
||||
export const DouYinOrderStatusTextValue: Record<DouYinOrderStatus, any> = {
|
||||
[DouYinOrderStatus.ToUse]: {
|
||||
title: '待使用'
|
||||
},
|
||||
[DouYinOrderStatus.Used]: {
|
||||
title: '交易完成'
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user