1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
| export enum SearchType {
| /**身份 */
| Identity = 210,
| /**学历 */
| Education = 220,
| /**岗位 */
| Position = 230,
| /**证书类型 */
| CertificateType = 240,
| /**福利 */
| Welfare = 250,
| /**行业类型 */
| IndustryCategory = 260,
| }
|
| export const SearchTypeText = {
| [SearchType.Identity]: '身份',
| [SearchType.Education]: '学历',
| [SearchType.Position]: '岗位',
| [SearchType.CertificateType]: '证书类型',
| [SearchType.Welfare]: '福利',
| [SearchType.IndustryCategory]: '行业类型',
| };
|
| export enum BelongType {
| Park = 10,
| Human = 20,
| Product = 30,
| Information = 40,
| FlexiblePlatform = 60,
| LaborRecruitment = 70,
| DemandDevelopment = 80,
| TrainingInstitutions = 90,
| }
|
| export enum IndustryCategoryType {
| /**
| * 行业服务
| */
| IndustryServices = 0,
| /**
| * 行业配套
| */
| IndustryMatching,
|
| /**
| * 甲方需求
| */
| FirstPartyDemand,
| /**
| * 行业资讯
| */
| IndustryInformation,
| }
|
| export const IndustryCategoryTypeText = {
| [IndustryCategoryType.IndustryServices]: '行业服务',
| [IndustryCategoryType.IndustryMatching]: '行业配套',
| [IndustryCategoryType.FirstPartyDemand]: '甲方需求',
| [IndustryCategoryType.IndustryInformation]: '行业资讯',
| };
|
| export enum TagType {
| /**
| * 产品标签
| */
| ProductTag = 0,
| /**
| * 资讯标签
| */
| InformationTag,
| /**
| * 定义标签
| */
| CustomTag,
| /**
| * 快捷评论标签
| */
| QuickEvaluateTag,
| }
|
| export enum UpLevel {
| /**
| * 一级
| */
| One = 1,
| /**
| * 二级
| */
| Two,
| /**
| * 三级
| */
| Three,
| }
| export const UpLevelText = {
| [UpLevel.One]: '一级',
| [UpLevel.Two]: '二级',
| [UpLevel.Three]: '三级',
| };
|
|