简历推荐功能开发
Some checks failed
Node CI / build (14.x, macOS-latest) (push) Has been cancelled
Node CI / build (14.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (14.x, windows-latest) (push) Has been cancelled
Node CI / build (16.x, macOS-latest) (push) Has been cancelled
Node CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (16.x, windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
coverage CI / build (push) Has been cancelled
Node pnpm CI / build (16.x, macOS-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, windows-latest) (push) Has been cancelled

This commit is contained in:
冯辉
2026-06-27 17:57:45 +08:00
parent f248d9a409
commit e13cea8c36
9 changed files with 1000 additions and 143 deletions

View File

@@ -139,3 +139,19 @@ export async function updateAppInterviewStatus(id: number, status: string) {
data: { status },
});
}
/** 根据岗位ID获取推荐简历 */
export async function getRecommendByJobId(jobId: string) {
return request<API.Management.RecommendPageResult>(`/api/cms/job/getRecommendByJobId`, {
method: 'GET',
params: { jobId },
});
}
/** 获取用户技能列表 */
export async function getAppSkillList(params?: { userId?: number }) {
return request<API.Management.SkillPageResult>(`/app/appskill/list`, {
method: 'GET',
params,
});
}