This commit is contained in:
张良(004796)
2024-01-04 14:36:31 +08:00
parent 0223ca5ec7
commit 56e3af06d7
3 changed files with 45 additions and 6 deletions

View File

@@ -6,6 +6,11 @@ const arrToMap = arr =>
return res
}, {})
export const userTypeList = [
{ value: 'sys_user', label: '后台管理',listClass: listClass.primary},
{ value: 'app_user', label: 'APP用户',listClass: listClass.info},
]
export const genderList = [
{ value: 0, label: '未知', listClass: listClass.warning },
{ value: 1, label: '女', listClass: listClass.danger },