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

30 lines
556 B

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