This commit is contained in:
张良(004796)
2023-12-22 14:08:46 +08:00
parent 02d53a3ab6
commit 4b6c7da4b6
9 changed files with 866 additions and 8 deletions

View File

@@ -63,6 +63,21 @@ export const forbidTypeList = [
{ value: 4, label: 'mac' },
]
export const memberTypeList = [
{ value: 0, label: '普通会员' ,listClass: listClass.info},
{ value: 1, label: '超级会员' ,listClass: listClass.danger},
]
export const yesOrNoList = [
{ value: 1, label: '是',listClass: listClass.danger},
{ value: 0, label: '否',listClass: listClass.info},
]
export const userRiskLowList = [
{ value: 1, label: '低风险',listClass: listClass.info},
{ value: 2, label: '高风险',listClass: listClass.danger},
]