auth.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. import request from '@/sheep/request';
  2. const AuthUtil = {
  3. // 使用手机 + 密码登录
  4. login: (data) => {
  5. return request({
  6. url: '/member/auth/login',
  7. method: 'POST',
  8. data,
  9. custom: {
  10. showSuccess: true,
  11. loadingMsg: '登录中',
  12. successMsg: '登录成功',
  13. },
  14. });
  15. },
  16. // 使用手机 + 验证码登录
  17. smsLogin: (data) => {
  18. return request({
  19. url: '/member/auth/sms-login',
  20. method: 'POST',
  21. data,
  22. custom: {
  23. showSuccess: true,
  24. loadingMsg: '登录中',
  25. successMsg: '登录成功',
  26. },
  27. });
  28. },
  29. // 发送手机验证码
  30. sendSmsCode: (mobile, scene) => {
  31. return request({
  32. url: '/member/auth/send-sms-code',
  33. method: 'POST',
  34. data: {
  35. mobile,
  36. scene,
  37. },
  38. custom: {
  39. loadingMsg: '发送中',
  40. showSuccess: true,
  41. successMsg: '发送成功',
  42. },
  43. });
  44. },
  45. // 登出系统
  46. logout: () => {
  47. return request({
  48. url: '/member/auth/logout',
  49. method: 'POST',
  50. });
  51. },
  52. // 刷新令牌
  53. refreshToken: (refreshToken) => {
  54. return request({
  55. url: '/member/auth/refresh-token',
  56. method: 'POST',
  57. params: {
  58. refreshToken
  59. },
  60. custom: {
  61. loading: false, // 不用加载中
  62. showError: false, // 不展示错误提示
  63. },
  64. });
  65. },
  66. // 社交授权的跳转
  67. socialAuthRedirect: (type, redirectUri) => {
  68. return request({
  69. url: '/member/auth/social-auth-redirect',
  70. method: 'GET',
  71. params: {
  72. type,
  73. redirectUri,
  74. },
  75. custom: {
  76. showSuccess: true,
  77. loadingMsg: '登陆中',
  78. },
  79. });
  80. },
  81. // 社交快捷登录
  82. socialLogin: (type, code, state) => {
  83. return request({
  84. url: '/member/auth/social-login',
  85. method: 'POST',
  86. data: {
  87. type,
  88. code,
  89. state,
  90. },
  91. custom: {
  92. showSuccess: true,
  93. loadingMsg: '登陆中',
  94. },
  95. });
  96. },
  97. // 微信小程序的一键登录
  98. weixinMiniAppLogin: (phoneCode, loginCode, state) => {
  99. return request({
  100. url: '/member/auth/weixin-mini-app-login',
  101. method: 'POST',
  102. data: {
  103. phoneCode,
  104. loginCode,
  105. state
  106. },
  107. custom: {
  108. showSuccess: true,
  109. loadingMsg: '登陆中',
  110. successMsg: '登录成功',
  111. },
  112. });
  113. },
  114. // 创建微信 JS SDK 初始化所需的签名
  115. createWeixinMpJsapiSignature: (url) => {
  116. return request({
  117. url: '/member/auth/create-weixin-jsapi-signature',
  118. method: 'POST',
  119. params: {
  120. url
  121. },
  122. custom: {
  123. showError: false,
  124. showLoading: false,
  125. },
  126. })
  127. },
  128. //
  129. };
  130. export default AuthUtil;