This commit is contained in:
77
2024-03-17 19:05:03 +08:00
parent 090fa810b2
commit d48cc14884
6 changed files with 276 additions and 688 deletions

View File

@@ -534,3 +534,13 @@ export const userInfoAuditTypeList = [
{ value: 1, label: '头像',listClass: listClass.primary},
{ value: 2, label: '自我描述',listClass: listClass.primary},
]
// single-单身认证 education-学历认证 job-工作认证 car-车辆认证 house-房子认证 marriage-婚况认证
export const userAuthAuditTypeList = [
{ value: 'single', label: '单身认证',listClass: listClass.primary},
{ value: 'education', label: '学历认证',listClass: listClass.primary},
{ value: 'job', label: '工作认证',listClass: listClass.primary},
{ value: 'car', label: '车辆认证',listClass: listClass.primary},
{ value: 'house', label: '房子认证',listClass: listClass.primary},
{ value: 'marriage', label: '婚况认证',listClass: listClass.primary},
]