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

35 lines
700 B

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. export default api