初始化

This commit is contained in:
xiaoyi
2024-01-27 19:53:17 +08:00
commit 07dbe71c31
840 changed files with 119152 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
interface RechargeType {
[key: number]: string
}
export const RechargeTypeMap: RechargeType = {
1: '注册赠送',
2: '受邀请赠送',
3: '邀请他人赠送',
4: '购买卡密充值',
5: '管理员赠送',
6: '扫码购买充值',
7: 'MJ绘画失败退款',
8: '签到奖励',
}
// 0未支付、1已支付、2、支付失败、3支付超时
export const OrderMap = {
0: '未支付',
1: '已支付',
2: '支付失败',
3: '支付超时',
}