useWechatAuth.js 985 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import { api_wechatAuth, api_systemConfiguration, api_getDictionary} from "@/http/api.js"
  2. import { useLoginSuccess } from '@/share/useLoginSuccess.js'
  3. const { loginSuccess } = useLoginSuccess()
  4. export function useWechatAuth() {
  5. /**
  6. * 微信登录2
  7. */
  8. const wechatAuth = () => {
  9. uni.showLoading({
  10. title: "登录中",
  11. mask: true,
  12. });
  13. api_wechatAuth({
  14. redirectUrl: location.origin + location.pathname
  15. }).then(res => {
  16. uni.hideLoading();
  17. if (res.url) {
  18. window.location.href = res.url;
  19. } else {
  20. loginSuccess(res.user);
  21. api_systemConfiguration({
  22. idx: 0,
  23. sum: 9999,
  24. }).then(res2=>{
  25. uni.setStorageSync('sysData',JSON.stringify(res2.list))
  26. })
  27. let postData = {
  28. "key": 'usertype',
  29. "type": "list",
  30. };
  31. api_getDictionary(postData).then((data) => {
  32. uni.setStorageSync('groupData',JSON.stringify(data))
  33. });
  34. }
  35. });
  36. }
  37. return {
  38. wechatAuth
  39. };
  40. }