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

47 lines
774 B

5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
  1. // 登录相关接口
  2. const api = {
  3. // 微信登录接口
  4. wxLogin: {
  5. url: '/api/login/login',
  6. method: 'GET',
  7. limit : 500,
  8. showLoading : true,
  9. },
  10. // 修改个人信息接口
  11. updateInfo: {
  12. url: '/employ/user/updateUser',
  13. method: 'POST',
  14. auth: true,
  15. limit : 500,
  16. showLoading : true,
  17. },
  18. //隐私政策
  19. getPrivacyPolicy: {
  20. url: '/login/getPrivacyPolicy',
  21. method: 'GET',
  22. },
  23. //用户协议
  24. getUserAgreement: {
  25. url: '/login/getUserAgreement',
  26. method: 'GET',
  27. },
  28. // 获取个人信息
  29. getInfo: {
  30. url: '/employ/user/queryUser',
  31. method: 'GET',
  32. auth: true,
  33. limit : 500,
  34. },
  35. // 获取个人信息
  36. bindPhone: {
  37. url: '/api/login/bindPhone',
  38. method: 'GET',
  39. auth: true,
  40. limit : 500,
  41. showLoading : true,
  42. },
  43. }
  44. export default api