loading.vue 690 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view></view>
  3. </template>
  4. <script>
  5. import store from '@/shopro/store';
  6. import { mapMutations, mapActions, mapState } from 'vuex';
  7. export default {
  8. data() {
  9. return {};
  10. },
  11. async onLoad(options) {
  12. // #ifdef H5
  13. // 检测H5登录回调
  14. if (options?.token) {
  15. let that = this;
  16. uni.showLoading({
  17. title: '登录中...'
  18. });
  19. await that.getUserInfo(options.token);
  20. let lastPage = uni.getStorageSync('lastPage');
  21. if (lastPage) {
  22. uni.removeStorageSync('lastPage');
  23. window.location = lastPage;
  24. } else {
  25. uni.switchTab({
  26. url: '/'
  27. });
  28. }
  29. }
  30. // #endif
  31. },
  32. methods: {
  33. ...mapActions(['getUserInfo'])
  34. }
  35. };
  36. </script>
  37. <style></style>