user.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <!-- 个人中心 -->
  2. <template>
  3. <view class="personal-wrap">
  4. <!-- 个人信息卡片 -->
  5. <userinfo-card v-if="userHeadData && userHeadData.style" :scrollTop="scrollTop" :detail="userHeadData" @onShare="onShare"></userinfo-card>
  6. <!-- 自定义模块 -->
  7. <view v-for="(item, index) in userTemplate" :key="item.id">
  8. <!-- 轮播 -->
  9. <sh-banner
  10. v-if="item.type === 'banner' && index !== 0"
  11. :Px="item.content.x"
  12. :Py="item.content.y"
  13. :borderRadius="item.content.radius"
  14. :height="item.content.height"
  15. :list="item.content.list"
  16. ></sh-banner>
  17. <!-- 滑动宫格 -->
  18. <sh-grid-swiper v-if="item.type === 'menu'" :list="item.content.list" :oneRowNum="item.content.style"></sh-grid-swiper>
  19. <!-- 广告魔方 -->
  20. <sh-adv v-if="item.type === 'adv'" :detail="item.content"></sh-adv>
  21. <!-- 推荐商品 -->
  22. <sh-hot-goods v-if="item.type === 'goods-list' || item.type === 'goods-group'" :detail="item.content"></sh-hot-goods>
  23. <!-- 富文本 -->
  24. <sh-richtext v-if="item.type === 'rich-text'" :richId="item.content.id"></sh-richtext>
  25. <!-- 功能列表 -->
  26. <sh-cell v-if="item.type === 'nav-list'" :list="item.content.list"></sh-cell>
  27. <!-- 九宫格列表 -->
  28. <sh-grid v-if="item.type === 'grid-list'" :list="item.content.list"></sh-grid>
  29. <!-- 钱包 -->
  30. <sh-wallet v-if="item.type === 'wallet-card'"></sh-wallet>
  31. <!-- 订单卡片 -->
  32. <sh-order-card v-if="item.type === 'order-card'"></sh-order-card>
  33. </view>
  34. <!-- copyright -->
  35. <view class="copyright-box u-flex-col u-row-center u-col-center u-p-t-80 u-p-b-50" v-if="initShop.copyright">
  36. <view class="copyright-text">{{ initShop.copyright[0] }}</view>
  37. <view class="copyright-text">{{ initShop.copyright[1] }}</view>
  38. </view>
  39. <!-- #ifdef H5 -->
  40. <view class="tabbar-hack" style="height: 120rpx; width:100%;"></view>
  41. <!-- #endif -->
  42. <!-- 关注弹窗 -->
  43. <shopro-float-btn></shopro-float-btn>
  44. <!-- 登录提示 -->
  45. <shopro-auth-modal></shopro-auth-modal>
  46. <!-- 分享组件 -->
  47. <shopro-share v-model="showShare" posterType="user"></shopro-share>
  48. <!-- <shopro-tabbar></shopro-tabbar> -->
  49. </view>
  50. </template>
  51. <script>
  52. import shBanner from './components/sh-banner.vue';
  53. import shGridSwiper from './components/sh-grid-swiper.vue';
  54. import shAdv from './components/sh-adv.vue';
  55. import shRichtext from './components/sh-richtext.vue';
  56. import shCell from './components/sh-cell.vue';
  57. import shGrid from './components/sh-grid.vue';
  58. import shOrderCard from './components/sh-order-card.vue';
  59. import shWallet from './components/sh-wallet.vue';
  60. import shHotGoods from './components/sh-hot-goods.vue';
  61. import userinfoCard from './user/userinfo-card.vue';
  62. import { mapMutations, mapActions, mapState, mapGetters } from 'vuex';
  63. import share from '@/shopro/share';
  64. export default {
  65. components: {
  66. shBanner,
  67. shGridSwiper,
  68. shAdv,
  69. shRichtext,
  70. shCell,
  71. shGrid,
  72. shWallet,
  73. shOrderCard,
  74. shHotGoods,
  75. userinfoCard
  76. },
  77. data() {
  78. return {
  79. scrollTop: 0,
  80. showShare: false,
  81. enable: false //是否开启吸顶。
  82. };
  83. },
  84. computed: {
  85. ...mapGetters(['initShop', 'userTemplate', 'isLogin', 'userInfo', 'authType']),
  86. userHeadData() {
  87. if (this.userTemplate?.length) {
  88. return this.userTemplate[0].content;
  89. }
  90. }
  91. },
  92. // 下拉刷新
  93. onPullDownRefresh() {
  94. this.init();
  95. },
  96. onPageScroll(e) {
  97. this.scrollTop = e.scrollTop;
  98. },
  99. onShow() {
  100. if (this.isLogin) {
  101. this.init();
  102. this.getUserData();
  103. }
  104. this.enable = true;
  105. },
  106. methods: {
  107. ...mapActions(['getUserInfo', 'showAuthModal', 'getUserData']),
  108. onShare() {
  109. this.showShare = true;
  110. uni.hideTabBar();
  111. },
  112. // 初始化
  113. init() {
  114. this.getUserInfo()
  115. .then(res => {
  116. uni.stopPullDownRefresh();
  117. })
  118. .catch(e => {
  119. uni.stopPullDownRefresh();
  120. });
  121. }
  122. }
  123. };
  124. </script>
  125. <style lang="scss">
  126. .copyright-box {
  127. .copyright-text {
  128. font-size: 22rpx;
  129. font-weight: 500;
  130. color: #c4c4c4;
  131. }
  132. }
  133. </style>