auth.js 2.9 KB

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