简历筛选功能开发
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:
francis-fh
2026-07-22 18:26:51 +08:00
parent 86e70a38d0
commit cd92dd4628
6 changed files with 214 additions and 18 deletions

View File

@@ -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', {