工单小程序2024-11-20
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.

32 lines
507 B

1 year ago
  1. // 登录相关接口
  2. const api = {
  3. // 微信登录接口
  4. wxLogin: {
  5. url: '/login/login',
  6. method: 'POST',
  7. limit : 500,
  8. showLoading : true,
  9. },
  10. // 修改个人信息接口
  11. updateInfo: {
  12. url: '/info/updateInfo',
  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. export default api