Merge branch 'master' of http://124.243.245.42:3000/sh/shz-admin
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 22:45:18 +08:00
18 changed files with 21285 additions and 42824 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,
});
}