login.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!-- 微信公众号的登录回调页 -->
  2. <template>
  3. <!-- 空登陆页 -->
  4. <view />
  5. <view>
  6. 登录
  7. </view>
  8. </template>
  9. <script setup>
  10. import sheep from '@/sheep';
  11. import {
  12. onLoad
  13. } from '@dcloudio/uni-app';
  14. import {
  15. showAuthModal,
  16. closeAuthModal,
  17. } from '@/sheep/hooks/useModal';
  18. onLoad(async (options) => {
  19. // #ifdef H5
  20. // 将 search 参数赋值到 options 中,方便下面解析
  21. new URLSearchParams(location.search).forEach((value, key) => {
  22. options[key] = value;
  23. });
  24. const event = options.event;
  25. const code = options.code;
  26. const state = options.state;
  27. if (event === 'login') { // 场景一:登录
  28. await sheep.$platform.useProvider().login(code, state).then((res)=>{
  29. console.log(res)
  30. if (!res) {
  31. console.log("返回第一次登录了", res)
  32. showAuthModal("officialAccountFirstLogin")
  33. }
  34. });
  35. return false
  36. } else if (event === 'bind') { // 场景二:绑定
  37. sheep.$platform.useProvider().bind(code, state);
  38. }
  39. // 检测 H5 登录回调
  40. let returnUrl = uni.getStorageSync('returnUrl');
  41. if (returnUrl) {
  42. uni.removeStorage('returnUrl');
  43. location.replace(returnUrl);
  44. } else {
  45. uni.switchTab({
  46. url: '/',
  47. });
  48. }
  49. // #endif
  50. });
  51. </script>