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

2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
  1. // 工作相关接口
  2. const api = {
  3. // 首页-添加工作信息
  4. addJob: {
  5. url: '/employ/job/addJob',
  6. method: 'POST',
  7. auth : true,
  8. limit : 1500,
  9. },
  10. // 首页-根据Id查看工作详情
  11. employeeQueryJobList: {
  12. url: '/employ/job/queryJobList',
  13. method: 'GET',
  14. },
  15. // 首页-查询工作信息列表
  16. employeeQueryJobById: {
  17. url: '/employ/job/queryJobById',
  18. method: 'GET',
  19. },
  20. // 会员中心-我的招工
  21. bossQueryJobListByUserId: {
  22. url: '/employ/job/queryJobListByUserId',
  23. method: 'GET',
  24. auth : true,
  25. },
  26. // 首页-修改工作信息
  27. updateJob: {
  28. url: '/employ/job/updateJob',
  29. method: 'GET',
  30. auth : true,
  31. },
  32. }
  33. export default api