简历筛选功能开发
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
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
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
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:
@@ -158,6 +158,14 @@ export async function getAppSkillList(params?: { userId?: number }) {
|
||||
|
||||
// ========== 面试消息角标 APIs ==========
|
||||
|
||||
/** 简历筛选 */
|
||||
export async function filterQzz(params?: { id: string; filterStatus: string; filterReason?: string }) {
|
||||
return request<API.Management.ManagePageResult>(`/api/cms/jobApply/filterQzz`, {
|
||||
method: 'PUT',
|
||||
data: params,
|
||||
});
|
||||
}
|
||||
|
||||
/** 获取面试消息角标数量(后台管理端菜单角标) */
|
||||
export async function getInterviewBadgeCount() {
|
||||
return request<{
|
||||
|
||||
@@ -182,6 +182,15 @@ export async function submitJobComplaint(params: {
|
||||
});
|
||||
}
|
||||
|
||||
/** 修改简历公开状态 POST /api/cms/appUser/changeResumeStatus */
|
||||
export async function changeResumeStatus(params: { userId: number; resumeStatus: string }, options?: Record<string, any>) {
|
||||
return request<API.Result>('/api/cms/appUser/changeResumeStatus', {
|
||||
method: 'POST',
|
||||
data: params,
|
||||
...(options || {}),
|
||||
});
|
||||
}
|
||||
|
||||
/** 屏蔽企业 POST /cms/blockCompany */
|
||||
export async function blockCompany(params: { userId: number; companyId: number }) {
|
||||
return request<API.Result>('/api/cms/blockCompany', {
|
||||
|
||||
Reference in New Issue
Block a user