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

46 lines
866 B

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