特易招,招聘小程序
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.

34 lines
707 B

2 months ago
  1. // 收藏相关接口
  2. const api = {
  3. //我的收藏-添加简历收藏
  4. addResumeCollection: {
  5. url: '/employ/collection/addResumeCollection',
  6. method: 'POST',
  7. auth: true,
  8. limit : 500,
  9. showLoading : true,
  10. },
  11. //我的收藏-添加工作收藏
  12. addJobCollection: {
  13. url: '/employ/collection/addJobCollection',
  14. method: 'POST',
  15. auth: true,
  16. limit : 500,
  17. showLoading : true,
  18. },
  19. //我的收藏工作
  20. employeeQueryCollectionJobList: {
  21. url: '/employ/collection/queryJobCollectionList',
  22. method: 'GET',
  23. auth: true,
  24. },
  25. //我的收藏,简历
  26. bossQueryCollectionJobList: {
  27. url: '/employ/collection/queryResumeCollectionList',
  28. method: 'GET',
  29. auth: true,
  30. },
  31. }
  32. export default api