This commit is contained in:
张良(004796)
2023-12-21 19:07:46 +08:00
parent 9cb673cdea
commit 02d53a3ab6
7 changed files with 438 additions and 249 deletions

View File

@@ -41,6 +41,28 @@ export const cashStatusList = [
{ value: 3, label: '审核不通过',listClass: listClass.danger },
{ value: 4, label: '提现取消',listClass: listClass.info }
]
// 1.封6小时 2.封1天 3.封3天 4.封5天 5.封7天 6.封一个月 7.封10年 8 一小时 9 三小时 10 十二小时
export const forbidTimeList = [
{ value: 1, label: '封6小时' },
{ value: 2, label: '封1天'},
{ value: 3, label: '封3天' },
{ value: 4, label: '封5天' },
{ value: 5, label: '封7天' },
{ value: 6, label: '封一个月' },
{ value: 7, label: '封10年' },
{ value: 8, label: '一小时' },
{ value: 9, label: '三小时' },
{ value: 10, label: '十二小时' },
]
// 1 封用户uid 2.封设备uuid 3.imei 4.mac
export const forbidTypeList = [
{ value: 1, label: '用户' },
{ value: 2, label: '设备'},
{ value: 3, label: 'imei' },
{ value: 4, label: 'mac' },
]