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

29 lines
534 B

2 months ago
2 months ago
2 months ago
  1. // 工作相关接口
  2. const api = {
  3. // 首页-添加工作信息
  4. addResume: {
  5. url: '/employ/resume/addResume',
  6. method: 'POST',
  7. auth : true,
  8. limit : 1500,
  9. },
  10. // 我的简历
  11. queryResumeByUserId: {
  12. url: '/employ/resume/queryResumeByUserId',
  13. method: 'GET',
  14. auth : true,
  15. },
  16. //获取简历列表
  17. bossQueryJobList: {
  18. url: '/employ/resume/queryResumeList',
  19. method: 'GET',
  20. },
  21. //根据Id查看简历详情
  22. bossQueryResumeById: {
  23. url: '/employ/resume/queryResumeById',
  24. method: 'GET',
  25. },
  26. }
  27. export default api