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

24 lines
520 B

2 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: '/api/boss/queryWatchWho',
  18. method: 'GET',
  19. auth: true,
  20. },
  21. }
  22. export default api