view.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <!-- 自定义页面 -->
  2. <template>
  3. <view class="home-wrap u-m-b-20">
  4. <!-- 空白页 -->
  5. <u-no-network @retry="init"></u-no-network>
  6. <shopro-empty v-if="isEmpty" :image="$IMG_URL + '/imgs/empty/template_empty.png'" tipText="暂未找到模板,请前往装修~"></shopro-empty>
  7. <view v-else-if="isRefresh" class="content-box">
  8. <!-- 自定义模块 -->
  9. <view class="template-box">
  10. <block v-for="(item, index) in viewTemplate" :key="item.id">
  11. <!-- 轮播 -->
  12. <sh-banner
  13. v-if="item.type === 'banner'"
  14. :Px="item.content.x"
  15. :Py="item.content.y"
  16. :borderRadius="item.content.radius"
  17. :height="item.content.height"
  18. :list="item.content.list"
  19. ></sh-banner>
  20. <!-- 搜索 -->
  21. <sh-search v-if="item.type === 'search'"></sh-search>
  22. <!-- 滑动宫格 -->
  23. <sh-grid-swiper v-if="item.type === 'menu'" :list="item.content.list" :oneRowNum="item.content.style"></sh-grid-swiper>
  24. <!-- 推荐商品 -->
  25. <sh-hot-goods v-if="item.type === 'goods-list' || item.type === 'goods-group'" :detail="item.content"></sh-hot-goods>
  26. <!-- 广告魔方 -->
  27. <!-- <sh-adv v-if="item.type === 'adv'" :detail="item.content"></sh-adv> -->
  28. <!-- 优惠券 -->
  29. <!-- <sh-coupon v-if="item.type === 'coupons'" :detail="item.content"></sh-coupon> -->
  30. <!-- 秒杀-->
  31. <!-- <sh-seckill v-if="item.type === 'seckill'" :detail="item.content"></sh-seckill> -->
  32. <!-- 拼团 -->
  33. <!-- <sh-groupon v-if="item.type === 'groupon'" :detail="item.content"></sh-groupon> -->
  34. <!-- 富文本 -->
  35. <!-- <sh-richtext v-if="item.type === 'rich-text'" :richId="item.content.id"></sh-richtext> -->
  36. <!-- 功能列表 -->
  37. <sh-cell v-if="item.type === 'nav-list'" :list="item.content.list"></sh-cell>
  38. <!-- 九宫格列表 -->
  39. <sh-grid v-if="item.type === 'grid-list'" :detail="item.content.list"></sh-grid>
  40. <!-- 功能标题 -->
  41. <sh-title-card v-if="item.type === 'title-block'" :title="item.content.name" :bgImage="item.content.image" :titleColor="item.content.color"></sh-title-card>
  42. <!-- 钱包 -->
  43. <!-- <sh-wallet v-if="item.type === 'wallet-card'"></sh-wallet> -->
  44. <!-- 订单卡片 -->
  45. <sh-order-card v-if="item.type === 'order-card'"></sh-order-card>
  46. <!-- 直播 -->
  47. <!-- #ifdef MP-WEIXIN -->
  48. <sh-live v-if="item.type === 'live' && HAS_LIVE" :detail="item.content"></sh-live>
  49. <!-- #endif -->
  50. </block>
  51. </view>
  52. <!-- 分类选项卡 -->
  53. <sh-category-tabs
  54. v-if="categoryTabsData && categoryTabsData.category_arr && categoryTabsData.category_arr.length"
  55. :enable="enable"
  56. :styleType="categoryTabsData.style"
  57. :tabsList="categoryTabsData.category_arr"
  58. ></sh-category-tabs>
  59. <!-- 登录提示 -->
  60. <shopro-auth-modal></shopro-auth-modal>
  61. <!-- #ifdef H5 -->
  62. <view class="tabbar-hack" style="height: 120rpx; width:100%;"></view>
  63. <!-- #endif -->
  64. </view>
  65. </view>
  66. </template>
  67. <script>
  68. import shBanner from './components/sh-banner.vue';
  69. import shGridSwiper from './components/sh-grid-swiper.vue';
  70. import shHotGoods from './components/sh-hot-goods.vue';
  71. import shAdv from './components/sh-adv.vue';
  72. import shCoupon from './components/sh-coupon.vue';
  73. import shSeckill from './components/sh-seckill.vue';
  74. import shGroupon from './components/sh-groupon.vue';
  75. import shRichtext from './components/sh-richtext.vue';
  76. import shCell from './components/sh-cell.vue';
  77. import shGrid from './components/sh-grid.vue';
  78. import shTitleCard from './components/sh-title-card.vue';
  79. import shOrderCard from './components/sh-order-card.vue';
  80. import shWallet from './components/sh-wallet.vue';
  81. import shSearch from './components/sh-search.vue';
  82. import shCategoryTabs from './components/sh-category-tabs.vue';
  83. import { mapMutations, mapActions, mapState, mapGetters } from 'vuex';
  84. // #ifdef MP-WEIXIN
  85. import { HAS_LIVE } from '@/env';
  86. import shLive from './components/sh-live.vue';
  87. // #endif
  88. // #ifdef H5
  89. let listenMove = document.body; //禁止手机h5下拉刷新带动整个页面。
  90. let handle = function(e) {
  91. e.preventDefault();
  92. };
  93. // #endif
  94. export default {
  95. components: {
  96. shBanner,
  97. shGridSwiper,
  98. shGroupon,
  99. shHotGoods,
  100. shAdv,
  101. shCoupon,
  102. shSeckill,
  103. shRichtext,
  104. shCell,
  105. shGrid,
  106. shTitleCard,
  107. shWallet,
  108. shOrderCard,
  109. shSearch,
  110. shCategoryTabs,
  111. // #ifdef MP-WEIXIN
  112. shLive
  113. // #endif
  114. },
  115. data() {
  116. return {
  117. // #ifdef MP-WEIXIN
  118. HAS_LIVE: HAS_LIVE,
  119. // #endif
  120. enable: false, //是否开启吸顶。
  121. isScorll: false,
  122. viewTemplate: [], //自定义模板数据
  123. isEmpty: false,
  124. isRefresh: false, //刷新
  125. categoryTabsData: {} //分类选项卡
  126. };
  127. },
  128. computed: {
  129. ...mapGetters(['isLogin'])
  130. },
  131. onPullDownRefresh() {
  132. this.getViewTemplate();
  133. },
  134. onPageScroll(e) {
  135. this.isScorll = e.scrollTop > 100 ? true : false;
  136. },
  137. onShow() {
  138. let that = this;
  139. this.enable = true;
  140. this.isLogin && this.getCartList();
  141. },
  142. onHide() {
  143. this.enable = false;
  144. },
  145. onLoad() {
  146. this.getViewTemplate();
  147. },
  148. methods: {
  149. ...mapActions(['getCartList']),
  150. // 初始化
  151. getViewTemplate() {
  152. let that = this;
  153. that.isRefresh = false;
  154. that.$http('common.custom', {
  155. custom_id: that.$Route.query.id
  156. }).then(res => {
  157. uni.stopPullDownRefresh();
  158. that.isRefresh = true;
  159. if (res.code == 1) {
  160. that.viewTemplate = res.data.template;
  161. that.isEmpty = !that.viewTemplate.length;
  162. that.categoryTabsData = that.viewTemplate[that.viewTemplate.length - 1].content;
  163. uni.setNavigationBarTitle({
  164. title: '中宏商城' || res.data.name
  165. });
  166. }
  167. });
  168. }
  169. }
  170. };
  171. </script>
  172. <style lang="scss"></style>