index.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <template>
  2. <div class="quality-recommend" :style="colorStyle">
  3. <div class="slider-banner swiper">
  4. <view class="swiper">
  5. <swiper indicator-dots="true" :autoplay="autoplay" :circular="circular" :interval="interval"
  6. :duration="duration" indicator-color="rgba(255,255,255,0.6)" indicator-active-color="#fff">
  7. <block v-for="(item, index) in imgUrls" :key="index">
  8. <swiper-item>
  9. <image :src="item.img" class="slide-image" @click="goPages(item)"></image>
  10. </swiper-item>
  11. </block>
  12. </swiper>
  13. </view>
  14. </div>
  15. <div class="title acea-row row-center-wrapper">
  16. <div class="line"></div>
  17. <div class="name">
  18. <span class="iconfont" :class="icon"></span>
  19. {{ typeName[type]}}
  20. </div>
  21. <div class="line"></div>
  22. </div>
  23. <view class="wrapper">
  24. <GoodList :bastList="goodsList" :is-sort="false"></GoodList>
  25. <emptyPage v-if="goodsList.length == 0 && !isScroll" :title="$t(`暂无数据`)"></emptyPage>
  26. </view>
  27. <!-- #ifndef MP -->
  28. <home></home>
  29. <!-- #endif -->
  30. <pageFooter v-if="footerStatus"></pageFooter>
  31. </div>
  32. </template>
  33. <script>
  34. import emptyPage from '@/components/emptyPage.vue';
  35. import GoodList from '@/components/goodList';
  36. import pageFooter from '@/components/pageFooter/index.vue';
  37. import {
  38. getGroomList
  39. } from '@/api/store';
  40. import {
  41. goPage
  42. } from '@/libs/order.js';
  43. import home from '@/components/home/index.vue'
  44. import colors from "@/mixins/color";
  45. export default {
  46. name: 'HotNewGoods',
  47. components: {
  48. GoodList,
  49. emptyPage,
  50. home,
  51. pageFooter
  52. },
  53. props: {},
  54. mixins: [colors],
  55. data: function() {
  56. return {
  57. imgUrls: [],
  58. goodsList: [],
  59. name: '',
  60. icon: '',
  61. type: 0,
  62. typeName: ['', this.$t(`精品推荐`), this.$t(`热门榜单`), this.$t(`首发新品`),
  63. this.$t(`促销单品`)
  64. ],
  65. autoplay: true,
  66. circular: true,
  67. interval: 3000,
  68. duration: 500,
  69. page: 1,
  70. limit: 8,
  71. isScroll: true,
  72. footerStatus: false
  73. };
  74. },
  75. onLoad: function(option) {
  76. if (uni.getStorageSync('FOOTER_BAR')) {
  77. this.footerStatus = true
  78. uni.hideTabBar()
  79. }
  80. this.type = option.type;
  81. this.titleInfo();
  82. this.name = option.name;
  83. // document.title = "精品推荐";
  84. uni.setNavigationBarTitle({
  85. title: option.name
  86. });
  87. this.getIndexGroomList();
  88. },
  89. methods: {
  90. titleInfo: function() {
  91. if (this.type === '1') {
  92. this.icon = 'icon-jingpintuijian';
  93. } else if (this.type === '2') {
  94. this.icon = 'icon-remen';
  95. } else if (this.type === '3') {
  96. this.icon = 'icon-xinpin';
  97. } else if (this.type === '4') {
  98. this.icon = 'icon-xinpin';
  99. }
  100. },
  101. goPages(item) {
  102. let url = item.link || '';
  103. goPage().then(res => {
  104. if (url.indexOf('http') != -1) {
  105. // #ifdef H5
  106. location.href = url;
  107. // #endif
  108. } else {
  109. if (['/pages/goods_cate/goods_cate', '/pages/order_addcart/order_addcart',
  110. '/pages/user/index'
  111. ].indexOf(url) == -1) {
  112. uni.navigateTo({
  113. url: url
  114. });
  115. } else {
  116. uni.navigateTo({
  117. url: url
  118. });
  119. }
  120. }
  121. });
  122. },
  123. getIndexGroomList() {
  124. if (!this.isScroll) return;
  125. let that = this;
  126. let type = this.type;
  127. getGroomList(type, {
  128. page: this.page,
  129. limit: this.limit
  130. })
  131. .then(res => {
  132. that.imgUrls = res.data.banner;
  133. that.goodsList = that.goodsList.concat(res.data.list);
  134. that.isScroll = res.data.list.length >= that.limit;
  135. that.page++;
  136. })
  137. .catch(function(res) {
  138. that.$util.Tips({
  139. title: res
  140. });
  141. });
  142. },
  143. onReachBottom() {
  144. this.getIndexGroomList();
  145. }
  146. }
  147. }
  148. </script>
  149. <style lang="scss">
  150. /deep/ .empty-box {
  151. background-color: #f5f5f5;
  152. }
  153. .swiper,
  154. swiper,
  155. swiper-item,
  156. .slide-image {
  157. width: 100%;
  158. height: 280rpx;
  159. }
  160. .quality-recommend {
  161. .wrapper {
  162. background: #fff;
  163. }
  164. .title {
  165. height: 120rpx;
  166. font-size: 32rpx;
  167. color: #282828;
  168. background-color: #f5f5f5;
  169. .name {
  170. margin: 0 20rpx;
  171. .iconfont {
  172. margin-right: 10rpx;
  173. }
  174. }
  175. .line {
  176. width: 190rpx;
  177. height: 2rpx;
  178. background-color: #e9e9e9;
  179. }
  180. }
  181. }
  182. .txt-bar {
  183. padding: 20rpx 0;
  184. text-align: center;
  185. font-size: 26rpx;
  186. color: #666;
  187. background-color: #f5f5f5;
  188. }
  189. .acea-row {
  190. flex-wrap: nowrap !important;
  191. }
  192. </style>