user.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!-- 个人中心:支持装修 -->
  2. <template>
  3. <s-layout
  4. title="我的"
  5. tabbar="/pages/index/user"
  6. navbar="custom"
  7. :bgStyle="template.page"
  8. :navbarStyle="template.style?.navbar"
  9. onShareAppMessage
  10. >
  11. <s-block v-for="(item, index) in template.components" :key="index" :styles="item.property.style">
  12. <s-block-item :type="item.id" :data="item.property" :styles="item.property.style" />
  13. </s-block>
  14. </s-layout>
  15. </template>
  16. <script setup>
  17. import { computed } from 'vue';
  18. import { onShow, onPageScroll, onPullDownRefresh,onLoad } from '@dcloudio/uni-app';
  19. import sheep from '@/sheep';
  20. import {
  21. closeShareModal,
  22. showAuthModal
  23. } from '@/sheep/hooks/useModal';
  24. // 隐藏原生tabBar
  25. uni.hideTabBar();
  26. const template = computed(() => sheep.$store('app').template.user);
  27. console.log(template.value)
  28. const isLogin = computed(() => sheep.$store('user').isLogin);
  29. onShow(() => {
  30. sheep.$store('user').updateUserData();
  31. });
  32. onPullDownRefresh(() => {
  33. sheep.$store('user').updateUserData();
  34. setTimeout(function () {
  35. uni.stopPullDownRefresh();
  36. }, 800);
  37. });
  38. onPageScroll(() => {});
  39. onLoad((options) => {
  40. if (options.linkId) {
  41. uni.setStorageSync("linkId",options.linkId)
  42. }
  43. if (!isLogin.value) {
  44. showAuthModal();
  45. }
  46. });
  47. </script>
  48. <style></style>