auth.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. OfficialEnterLogin: (mobile, scene) => {
  47. return request({
  48. url: '/member/auth/social-login-validate-sms-code',
  49. method: 'POST',
  50. data: {
  51. mobile,
  52. scene,
  53. },
  54. });
  55. },
  56. // 登出系统
  57. logout: () => {
  58. return request({
  59. url: '/member/auth/logout',
  60. method: 'POST',
  61. });
  62. },
  63. // 刷新令牌
  64. refreshToken: (refreshToken) => {
  65. return request({
  66. url: '/member/auth/refresh-token',
  67. method: 'POST',
  68. params: {
  69. refreshToken
  70. },
  71. custom: {
  72. loading: false, // 不用加载中
  73. showError: false, // 不展示错误提示
  74. },
  75. });
  76. },
  77. // 社交授权的跳转
  78. socialAuthRedirect: (type, redirectUri) => {
  79. return request({
  80. url: '/member/auth/social-auth-redirect',
  81. method: 'GET',
  82. params: {
  83. type,
  84. redirectUri,
  85. },
  86. custom: {
  87. showSuccess: true,
  88. loadingMsg: '登陆中',
  89. },
  90. });
  91. },
  92. // 社交快捷登录
  93. socialLogin: (type, code, state) => {
  94. return request({
  95. url: '/member/auth/social-login',
  96. method: 'POST',
  97. data: {
  98. type,
  99. code,
  100. state,
  101. },
  102. custom: {
  103. showSuccess: true,
  104. loadingMsg: '登陆中',
  105. },
  106. });
  107. },
  108. // 微信小程序的一键登录
  109. weixinMiniAppLogin: (phoneCode, loginCode, state) => {
  110. return request({
  111. url: '/member/auth/weixin-mini-app-login',
  112. method: 'POST',
  113. data: {
  114. phoneCode,
  115. loginCode,
  116. state
  117. },
  118. custom: {
  119. showSuccess: true,
  120. loadingMsg: '登陆中',
  121. successMsg: '登录成功',
  122. },
  123. });
  124. },
  125. // 创建微信 JS SDK 初始化所需的签名
  126. createWeixinMpJsapiSignature: (url) => {
  127. return request({
  128. url: '/member/auth/create-weixin-jsapi-signature',
  129. method: 'POST',
  130. params: {
  131. url
  132. },
  133. custom: {
  134. showError: false,
  135. showLoading: false,
  136. },
  137. })
  138. },
  139. //
  140. };
  141. export default AuthUtil;