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

63 lines
1.3 KiB

4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
  1. // 登录相关接口
  2. const api = {
  3. //获取个人中心基础信息的接口
  4. getUserCenterData: {
  5. url: '/employ/user/getUserCenterData',
  6. method: 'GET',
  7. auth: true,
  8. },
  9. //开通VIP
  10. // addVIP: {
  11. // url: '/employ/user/getUserCenterData',
  12. // method: 'POST',
  13. // auth: true,
  14. // limit : 500,
  15. // showLoading : true,
  16. // },
  17. //个人实名认证 - 提交
  18. addAuthenticationPerson: {
  19. url: '/employ/authentication/addAuthenticationPerson',
  20. method: 'POST',
  21. auth: true,
  22. limit : 500,
  23. showLoading : true,
  24. },
  25. //个人实名认证 - 查询
  26. getAuthenticationPerson: {
  27. url: '/employ/authentication/getAuthenticationPerson',
  28. method: 'GET',
  29. auth: true
  30. },
  31. //获取兑换码信息列表接口
  32. queryExchangeList: {
  33. url: '/employ/exchange/queryExchangeList',
  34. method: 'GET',
  35. auth: true,
  36. },
  37. //输入兑换码立即兑换接口
  38. useExchange: {
  39. url: '/employ/exchange/useExchange',
  40. method: 'POST',
  41. auth: true,
  42. limit : 500,
  43. showLoading : true,
  44. },
  45. //获取考证咨询列表数据信息
  46. queryCert: {
  47. url: '/employ/examination/queryCert',
  48. method: 'GET',
  49. auth: true,
  50. },
  51. //考证咨询-提交报名材料
  52. addMaterial: {
  53. url: '/employ/examination/addMaterial',
  54. method: 'POST',
  55. auth: true,
  56. limit : 500,
  57. showLoading : true,
  58. },
  59. }
  60. export default api