预约面试功能开发
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:
francis-fh
2026-06-24 18:18:42 +08:00
parent ebfb4fa580
commit 5ecce431db
14 changed files with 164 additions and 35 deletions

View File

@@ -90,6 +90,7 @@ export async function addCmsUserWorkExperiencesList(params?: API.Management.Para
// ========== 面试邀约 APIs ==========
/** 后台管理端:面试邀约列表 */
export async function getCmsInterviewList(params?: API.Management.InterviewInvitation) {
return request<API.Management.InterviewPageResult>(`/api/cms/interview/list`, {
method: 'GET',
@@ -97,6 +98,14 @@ export async function getCmsInterviewList(params?: API.Management.InterviewInvit
});
}
/** 求职者端:我的面试邀约列表(无需后台权限) */
export async function getAppInterviewList(params?: API.Management.InterviewInvitation) {
return request<API.Management.InterviewPageResult>(`/api/app/interview/list`, {
method: 'GET',
params: params,
});
}
export async function addCmsInterview(params?: API.Management.InterviewInvitation) {
return request<API.Management.ManagePageResult>(`/api/cms/interview`, {
method: 'POST',