apiurl.js 817 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. 接口统一管理
  3. */
  4. const apiurl = {
  5. // 小程序获取openid
  6. wxinfo: {
  7. url: '/member/wechat/appletGetOpenId',
  8. type: 'get'
  9. },
  10. // 授权获取微信手机号
  11. getMobile: {
  12. url: '/member/wechat/appletGetMobileV1',
  13. type: 'get'
  14. },
  15. // 小程序openid登录
  16. login: {
  17. url: '/member/auth/appletLogin',
  18. type: 'post'
  19. },
  20. // 重新登录
  21. reLogin: {
  22. url: '/auth/login',
  23. type: 'post'
  24. },
  25. // 个人中心首页
  26. personalIndex: {
  27. url: '/system/client/personalIndex',
  28. type: 'get'
  29. },
  30. /**
  31. * @author ygh
  32. * @date 2023-12-14
  33. * 公众号获取openid
  34. *
  35. * */
  36. wxinfoH5: {
  37. url: '/member/wechat/h5/code/',
  38. type: 'get',
  39. addUrl: true
  40. },
  41. }
  42. /*
  43. * 特殊处理接口
  44. */
  45. const otherApiUrl = {
  46. // 文件上传
  47. uploadFile: '/file/upload/single/minio',
  48. }
  49. export {
  50. apiurl,
  51. otherApiUrl
  52. }