feat: 模卡更新

This commit is contained in:
chashaobao
2025-11-03 22:18:39 +08:00
parent fde2027588
commit 5e3e6903cb
31 changed files with 479 additions and 193 deletions

View File

@ -3,6 +3,7 @@ export enum ProfileGroupType {
Intention = 'intention',
Experience = 'experience',
Advantages = 'advantages',
Others = 'others',
}
export const ProfileTitleMap = {
@ -10,6 +11,7 @@ export const ProfileTitleMap = {
[ProfileGroupType.Intention]: '求职意向',
[ProfileGroupType.Experience]: '直播经验',
[ProfileGroupType.Advantages]: '自身优势',
[ProfileGroupType.Others]: '身型、学历',
};
export enum WorkedYears {
@ -19,6 +21,13 @@ export enum WorkedYears {
MoreThreeYear = 3,
}
export enum EducationType {
MiddleSchool = 1,
HighSchool = 2,
AssociateDegree = 3,
BachelorOrAbove = 4,
}
export enum GenderType {
All = -1,
MEN = 0,
@ -110,3 +119,15 @@ export const ANCHOR_READ_TITLE_MAP = {
[AnchorReadType.Read]: '已读',
[AnchorReadType.Unread]: '未读',
};
export const EDUCATION_TYPE_LABELS = {
[EducationType.MiddleSchool]: '初中',
[EducationType.HighSchool]: '职高/高中',
[EducationType.AssociateDegree]: '大专',
[EducationType.BachelorOrAbove]: '本科及以上',
};
export const EDUCATION_TYPE_OPTIONS = [
{ label: EDUCATION_TYPE_LABELS[EducationType.MiddleSchool], value: EducationType.MiddleSchool },
{ label: EDUCATION_TYPE_LABELS[EducationType.HighSchool], value: EducationType.HighSchool },
{ label: EDUCATION_TYPE_LABELS[EducationType.AssociateDegree], value: EducationType.AssociateDegree },
{ label: EDUCATION_TYPE_LABELS[EducationType.BachelorOrAbove], value: EducationType.BachelorOrAbove },
];