特易招,招聘小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

35 lines
707 B

// 收藏相关接口
const api = {
//我的收藏-添加简历收藏
addResumeCollection: {
url: '/employ/collection/addResumeCollection',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
//我的收藏-添加工作收藏
addJobCollection: {
url: '/employ/collection/addJobCollection',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
//我的收藏工作
employeeQueryCollectionJobList: {
url: '/employ/collection/queryJobCollectionList',
method: 'GET',
auth: true,
},
//我的收藏,简历
bossQueryCollectionJobList: {
url: '/employ/collection/queryResumeCollectionList',
method: 'GET',
auth: true,
},
}
export default api