useWechatAuth.js 614 B

1234567891011121314151617181920212223242526272829303132333435
  1. import {
  2. get,
  3. post,
  4. } from "@/http/http.js"
  5. import {
  6. useLoginSuccess
  7. } from '@/share/useLoginSuccess.js'
  8. const {
  9. loginSuccess
  10. } = useLoginSuccess()
  11. export function useWechatAuth() {
  12. /**
  13. * 微信登录2
  14. */
  15. function wechatAuth() {
  16. uni.showLoading({
  17. title: "登录中",
  18. mask: true,
  19. });
  20. post("/auth/wechatAuth", {
  21. redirectUrl: location.origin + location.pathname
  22. }).then(res => {
  23. uni.hideLoading();
  24. if (res.url) {
  25. window.location.href = res.url;
  26. } else {
  27. loginSuccess(res.user);
  28. }
  29. });
  30. }
  31. return {
  32. wechatAuth
  33. };
  34. }