|
@@ -41,14 +41,16 @@ export const personCvUnfitCancel = async (id) => {
|
|
|
// 招聘端-牛人管理-加入人才库
|
|
|
export const joinToTalentPool = async (id) => {
|
|
|
return await request.post({
|
|
|
- url: `/app-api/menduner/system/enterprise-talent-pool/add?userId=${id}`
|
|
|
+ url: `/app-api/menduner/system/enterprise-talent-pool/add?userId=${id}`,
|
|
|
+ openEncryption: true
|
|
|
})
|
|
|
}
|
|
|
|
|
|
// 招聘端-牛人管理-移出人才库
|
|
|
export const removeFormTalentPool = async (id) => {
|
|
|
return await request.post({
|
|
|
- url: `/app-api/menduner/system/enterprise-talent-pool/remove?userId=${id}`
|
|
|
+ url: `/app-api/menduner/system/enterprise-talent-pool/remove?userId=${id}`,
|
|
|
+ openEncryption: true
|
|
|
})
|
|
|
}
|
|
|
|