This commit is contained in:
dute7liang
2023-12-31 13:54:20 +08:00
parent 89d50bbb67
commit aaaaa84e1e
12 changed files with 663 additions and 809 deletions

View File

@@ -73,6 +73,16 @@ export const yesOrNoList = [
{ value: 0, label: '否',listClass: listClass.info},
]
export const isAnchorList = [
{ value: 1, label: '是',listClass: listClass.primary},
{ value: 0, label: '否',listClass: listClass.info},
]
export const booleanList = [
{ value: true, label: '是',listClass: listClass.danger},
{ value: false, label: '否',listClass: listClass.info},
]
export const userRiskLowList = [
{ value: 1, label: '低风险',listClass: listClass.info},
{ value: 2, label: '高风险',listClass: listClass.danger},