This commit is contained in:
张良(004796)
2024-03-29 15:09:19 +08:00
parent 96a201d729
commit d54d540333
2 changed files with 63 additions and 259 deletions

View File

@@ -564,3 +564,20 @@ export const wxTransDataStatusList = [
{ value: 1, label: '接受交换',listClass: listClass.primary},
{ value: 2, label: '拒绝交换',listClass: listClass.danger},
]
// 征婚状态 1-寻找中 2-已脱单 3-隐藏资料
export const userStatusPersonalsStatusList = [
{ value: 1, label: '寻找中',listClass: listClass.primary},
{ value: 2, label: '已脱单',listClass: listClass.danger},
{ value: 3, label: '隐藏资料',listClass: listClass.warning},
]
// 1-所有用户 2-VIP用户 3-实名用户 4-实名认证且VIP用户 5-不公开
export const userStatusShowAvatarList = [
{ value: 1, label: '所有用户',listClass: listClass.primary},
{ value: 2, label: 'VIP用户',listClass: listClass.warning},
{ value: 3, label: '实名用户',listClass: listClass.warning},
{ value: 4, label: '实名认证且VIP用户',listClass: listClass.danger},
{ value: 5, label: '不公开',listClass: listClass.info},
]