fix:新增岗位分析五个图表

This commit is contained in:
yy
2025-06-09 11:18:07 +08:00
parent 4136170101
commit 1bb796b5ef
6 changed files with 1042 additions and 389 deletions

View File

@@ -6,7 +6,8 @@ export type AnalysisType = '岗位发布数量' | '招聘增长率';
export type QuarterFormat = `${number}-${'Q1'|'Q2'|'Q3'|'Q4'|'第一季度'|'第二季度'|'第三季度'|'第四季度'}`;
export type AnalysisCategory = 'industry' | 'area' | 'salary';
export type SalaryRange = '3k-5k' | '5k-8k' | '8k-10k' | '10k+';
export type WorkYearRange = '应届' | '1-3年' | '3-5年' | '5年以上';
export type EducationLevel = '大专' | '本科' | '硕士' | '博士' | '不限';
export interface IndustryDataItem {
date: string;
category: string;
@@ -26,6 +27,7 @@ export interface IndustryTrendParams {
}
export interface IndustryTrendState extends IndustryTrendParams {
selectedWorkYearRange(): unknown;
selectedIndustry: string;
}