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

45 lines
1.0 KiB

7 months ago
6 months ago
7 months ago
6 months ago
7 months ago
6 months ago
7 months ago
  1. // 联系记录相关接口
  2. const api = {
  3. //联系记录-谁看过我(谁看过我的简历)
  4. employeeQueryWatchMe: {
  5. url: '/employ/check/queryWatchMeEmployee',
  6. method: 'GET',
  7. auth: true,
  8. },
  9. //会员中心-联系记录-谁看过我(谁看过我的招工)
  10. bossQueryWatchMe: {
  11. url: '/employ/check/queryWatchMeBoss',
  12. method: 'GET',
  13. auth: true,
  14. },
  15. //会员中心-联系记录-我看过谁(我看过谁的简历)
  16. bossQueryWatchWho: {
  17. url: '/employ/check/queryWatchWhoBoss',// queryWatchWhoBoss
  18. method: 'GET',
  19. auth: true,
  20. },
  21. //会员中心-联系记录-我看过谁 (我看过谁的招工)
  22. queryWatchWhoEmployee: {
  23. url: '/employ/check/queryWatchWhoEmployee',
  24. method: 'GET',
  25. auth: true,
  26. },
  27. //电子合同-获取电子合同列表
  28. queryContractList: {
  29. url: '/employ/contract/queryContractList',
  30. method: 'GET',
  31. auth: true,
  32. },
  33. //电子合同-根据id查询电子合同详情
  34. queryContracById: {
  35. url: '/employ/contract/queryContracById',
  36. method: 'GET',
  37. auth: true,
  38. },
  39. }
  40. export default api