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

91 lines
1.9 KiB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 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. getInviteCode: {
  61. url: '/employ/share/getInviteCode',
  62. method: 'POST',
  63. auth: true,
  64. limit : 500,
  65. showLoading : true,
  66. },
  67. //帮助反馈
  68. addQuestion: {
  69. url: '/employ/notebook/addQuestion',
  70. method: 'POST',
  71. auth: true,
  72. limit : 500,
  73. showLoading : true,
  74. },
  75. //我的服务-查询企业实名认证信息
  76. getAuthenticationCompany: {
  77. url: '/employ/authentication/getAuthenticationCompany',
  78. method: 'GET',
  79. auth: true
  80. },
  81. //我的服务-企业实名认证
  82. addAuthenticationCompany: {
  83. url: '/employ/authentication/addAuthenticationCompany',
  84. method: 'POST',
  85. auth: true
  86. },
  87. }
  88. export default api