index.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. <!-- 首页 -->
  2. <template>
  3. <view class="home-wrap u-m-b-20">
  4. <!-- 空白页 -->
  5. <!-- #ifdef APP-PLUS -->
  6. <u-no-network @retry="init"></u-no-network>
  7. <!-- #endif -->
  8. <shopro-empty v-if="!hasTemplate" :image="$IMG_URL + '/imgs/empty/template_empty.png'" tipText="暂未找到模板,请前往装修~">
  9. </shopro-empty>
  10. <view v-else-if="isConnected && isRefresh" class="content-box">
  11. <!-- 导航栏 -->
  12. <home-head v-if="headSwiperList && headSwiperList.length" :isScorll="isScorll" borderRadius="0"
  13. :navTitle="initShop.name" :list="headSwiperList"></home-head>
  14. <!-- 自定义模块 -->
  15. <view class="template-box">
  16. <block v-for="(item, index) in homeTemplate" :key="item.id">
  17. <!-- 轮播 -->
  18. <!-- <sh-banner v-if="item.type === 'banner' && index !== 0" :Px="item.content.x" :Py="item.content.y"
  19. :borderRadius="item.content.radius" :height="item.content.height" :list="item.content.list">
  20. </sh-banner> -->
  21. <!-- 搜索 -->
  22. <!-- <sh-search v-if="item.type === 'search'"></sh-search> -->
  23. <!-- 滑动宫格 -->
  24. <sh-grid-swiper v-if="item.type === 'menu'" :list="item.content.list"
  25. :oneRowNum="item.content.style"></sh-grid-swiper>
  26. <!-- 推荐商品 -->
  27. <!-- <sh-hot-goods v-if="item.type === 'goods-list' || item.type === 'goods-group'"
  28. :detail="item.content"></sh-hot-goods> -->
  29. <!-- 广告魔方 -->
  30. <!-- <sh-adv v-if="item.type === 'adv'" :detail="item.content"></sh-adv> -->
  31. <!-- 优惠券 -->
  32. <!-- <sh-coupon v-if="item.type === 'coupons'" :detail="item.content"></sh-coupon> -->
  33. <!-- 秒杀-->
  34. <!-- <sh-seckill v-if="item.type === 'seckill'" :detail="item.content"></sh-seckill> -->
  35. <!-- 拼团 -->
  36. <!-- <sh-groupon v-if="item.type === 'groupon'" :detail="item.content"></sh-groupon> -->
  37. <!-- 富文本 -->
  38. <!-- <sh-richtext v-if="item.type === 'rich-text'" :richId="item.content.id"></sh-richtext> -->
  39. <!-- 功能标题 -->
  40. <!-- <sh-title-card v-if="item.type === 'title-block'" :title="item.content.name"
  41. :bgImage="item.content.image" :titleColor="item.content.color"></sh-title-card> -->
  42. <!-- 直播 -->
  43. <!-- #ifdef MP-WEIXIN -->
  44. <!-- <sh-live v-if="item.type === 'live' && HAS_LIVE" :detail="item.content"></sh-live> -->
  45. <!-- #endif -->
  46. </block>
  47. </view>
  48. <!-- 分类选项卡 -->
  49. <sh-category-tabs
  50. v-if="categoryTabsData && categoryTabsData.category_arr && categoryTabsData.category_arr.length"
  51. :enable="enable" :styleType="categoryTabsData.style" :tabsList="categoryTabsData.category_arr">
  52. </sh-category-tabs>
  53. <!-- 登录提示 -->
  54. <shopro-auth-modal></shopro-auth-modal>
  55. <!-- 悬浮按钮 -->
  56. <!-- <shopro-float-btn></shopro-float-btn> -->
  57. <!-- 连续弹窗提醒 -->
  58. <shopro-notice-modal v-if="!showPrivacy && isLogin"></shopro-notice-modal>
  59. <!-- 隐私协议 -->
  60. <!-- #ifdef APP-PLUS -->
  61. <privacy-modal v-if="initShop && initShop.name" v-model="showPrivacy"></privacy-modal>
  62. <!-- #endif -->
  63. <!-- #ifdef H5 -->
  64. <view class="tabbar-hack" style="height: 120rpx; width:100%;"></view>
  65. <!-- #endif -->
  66. </view>
  67. <!-- <shopro-tabbar></shopro-tabbar> -->
  68. </view>
  69. </template>
  70. <script>
  71. import shBanner from './components/sh-banner.vue';
  72. import shGridSwiper from './components/sh-grid-swiper.vue';
  73. import shHotGoods from './components/sh-hot-goods.vue';
  74. import shAdv from './components/sh-adv.vue';
  75. import shCoupon from './components/sh-coupon.vue';
  76. import shSeckill from './components/sh-seckill.vue';
  77. import shGroupon from './components/sh-groupon.vue';
  78. import shRichtext from './components/sh-richtext.vue';
  79. import shTitleCard from './components/sh-title-card.vue';
  80. import shSearch from './components/sh-search.vue';
  81. import shCategoryTabs from './components/sh-category-tabs.vue';
  82. import privacyModal from './index/privacy-modal.vue';
  83. import homeHead from './index/home-head.vue';
  84. // #ifdef MP-WEIXIN
  85. import { HAS_LIVE } from '@/env';
  86. import shLive from './components/sh-live.vue';
  87. // #endif
  88. import { mapMutations, mapActions, mapState, mapGetters } from 'vuex';
  89. export default {
  90. components: {
  91. shBanner,
  92. shGridSwiper,
  93. shGroupon,
  94. shHotGoods,
  95. shAdv,
  96. shCoupon,
  97. shSeckill,
  98. shRichtext,
  99. shTitleCard,
  100. shSearch,
  101. shCategoryTabs,
  102. privacyModal,
  103. homeHead,
  104. // #ifdef MP-WEIXIN
  105. shLive
  106. // #endif
  107. },
  108. data() {
  109. return {
  110. // #ifdef MP-WEIXIN
  111. HAS_LIVE: HAS_LIVE,
  112. // #endif
  113. isRefresh: true,
  114. enable: false, //是否开启吸顶。
  115. isConnected: true, //是否有网
  116. showPrivacy: false, //协议
  117. isScorll: false
  118. };
  119. },
  120. computed: {
  121. ...mapGetters(['initShop', 'homeTemplate', 'hasTemplate', 'isLogin']),
  122. // 头部模块数据
  123. headSwiperList() {
  124. if (this.homeTemplate?.length) {
  125. return this.homeTemplate[0]?.content?.list;
  126. }
  127. },
  128. // 分类选项卡数据
  129. categoryTabsData() {
  130. if (this.homeTemplate?.length) {
  131. return this.homeTemplate[this.homeTemplate.length - 1]?.content;
  132. }
  133. }
  134. },
  135. onPullDownRefresh() {
  136. this.init();
  137. },
  138. onPageScroll(e) {
  139. this.isScorll = e.scrollTop > 100 ? true : false;
  140. },
  141. onShow() {
  142. let that = this;
  143. this.enable = true;
  144. this.isLogin && this.getCartList();
  145. // 网络变化检测
  146. uni.onNetworkStatusChange(res => {
  147. this.isConnected = res.isConnected;
  148. res.isConnected && this.init();
  149. });
  150. },
  151. onHide() {
  152. this.enable = false;
  153. },
  154. onLoad() {
  155. // #ifdef APP-VUE
  156. // app隐私协议弹窗
  157. if (!plus.runtime.isAgreePrivacy()) {
  158. this.showPrivacy = true;
  159. this.showNoticeModal = false;
  160. }
  161. // #endif
  162. },
  163. methods: {
  164. ...mapActions(['appInit', 'getTemplate', 'getCartList']),
  165. // 初始化
  166. init() {
  167. this.isRefresh = false;
  168. return Promise.all([this.getTemplate()]).then(() => {
  169. uni.stopPullDownRefresh();
  170. this.isRefresh = true;
  171. });
  172. }
  173. }
  174. };
  175. </script>
  176. <style lang="scss"></style>