|
|
-
- // 收藏相关接口
-
- 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
|