123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- <template>
- <div class="quality-recommend" :style="colorStyle">
- <div class="slider-banner swiper">
- <view class="swiper">
- <swiper indicator-dots="true" :autoplay="autoplay" :circular="circular" :interval="interval"
- :duration="duration" indicator-color="rgba(255,255,255,0.6)" indicator-active-color="#fff">
- <block v-for="(item, index) in imgUrls" :key="index">
- <swiper-item>
- <image :src="item.img" class="slide-image" @click="goPages(item)"></image>
- </swiper-item>
- </block>
- </swiper>
- </view>
- </div>
- <div class="title acea-row row-center-wrapper">
- <div class="line"></div>
- <div class="name">
- <span class="iconfont" :class="icon"></span>
- {{ typeName[type]}}
- </div>
- <div class="line"></div>
- </div>
- <view class="wrapper">
- <!-- <GoodList :bastList="goodsList" :is-sort="false"></GoodList> -->
- <emptyPage v-if="goodsList.length == 0 && !isScroll" :title="$t(`暂无数据`)"></emptyPage>
- </view>
- <!-- #ifndef MP -->
- <home></home>
- <!-- #endif -->
- <pageFooter v-if="footerStatus"></pageFooter>
- </div>
- </template>
- <script>
- import emptyPage from '@/components/emptyPage.vue';
- import pageFooter from '@/components/pageFooter/index.vue';
- import {
- getGroomList
- } from '@/api/store';
- import {
- goPage
- } from '@/libs/order.js';
- import home from '@/components/home/index.vue'
- import colors from "@/mixins/color";
- export default {
- name: 'HotNewGoods',
- components: {
- emptyPage,
- home,
- pageFooter
- },
- props: {},
- mixins: [colors],
- data: function() {
- return {
- imgUrls: [],
- goodsList: [],
- name: '',
- icon: '',
- type: 0,
- typeName: ['', this.$t(`精品推荐`), this.$t(`热门榜单`), this.$t(`首发新品`),
- this.$t(`促销单品`)
- ],
- autoplay: true,
- circular: true,
- interval: 3000,
- duration: 500,
- page: 1,
- limit: 8,
- isScroll: true,
- footerStatus: false
- };
- },
- onLoad: function(option) {
- if (uni.getStorageSync('FOOTER_BAR')) {
- this.footerStatus = true
- uni.hideTabBar()
- }
- this.type = option.type;
- this.titleInfo();
- this.name = option.name;
- // document.title = "精品推荐";
- uni.setNavigationBarTitle({
- title: option.name
- });
- this.getIndexGroomList();
- },
- methods: {
- titleInfo: function() {
- if (this.type === '1') {
- this.icon = 'icon-jingpintuijian';
- } else if (this.type === '2') {
- this.icon = 'icon-remen';
- } else if (this.type === '3') {
- this.icon = 'icon-xinpin';
- } else if (this.type === '4') {
- this.icon = 'icon-xinpin';
- }
- },
- goPages(item) {
- let url = item.link || '';
- goPage().then(res => {
- if (url.indexOf('http') != -1) {
- // #ifdef H5
- location.href = url;
- // #endif
- } else {
- if (['/pages/goods_cate/goods_cate', '/pages/order_addcart/order_addcart',
- '/pages/user/index'
- ].indexOf(url) == -1) {
- uni.navigateTo({
- url: url
- });
- } else {
- uni.navigateTo({
- url: url
- });
- }
- }
- });
- },
- getIndexGroomList() {
- if (!this.isScroll) return;
- let that = this;
- let type = this.type;
- getGroomList(type, {
- page: this.page,
- limit: this.limit
- })
- .then(res => {
- that.imgUrls = res.data.banner;
- that.goodsList = that.goodsList.concat(res.data.list);
- that.isScroll = res.data.list.length >= that.limit;
- that.page++;
- })
- .catch(function(res) {
- that.$util.Tips({
- title: res
- });
- });
- },
- onReachBottom() {
- this.getIndexGroomList();
- }
- }
- }
- </script>
- <style lang="scss">
- /deep/ .empty-box {
- background-color: #f5f5f5;
- }
- .swiper,
- swiper,
- swiper-item,
- .slide-image {
- width: 100%;
- height: 280rpx;
- }
- .quality-recommend {
- .wrapper {
- background: #fff;
- }
- .title {
- height: 120rpx;
- font-size: 32rpx;
- color: #282828;
- background-color: #f5f5f5;
- .name {
- margin: 0 20rpx;
- .iconfont {
- margin-right: 10rpx;
- }
- }
- .line {
- width: 190rpx;
- height: 2rpx;
- background-color: #e9e9e9;
- }
- }
- }
- .txt-bar {
- padding: 20rpx 0;
- text-align: center;
- font-size: 26rpx;
- color: #666;
- background-color: #f5f5f5;
- }
- .acea-row {
- flex-wrap: nowrap !important;
- }
- </style>
|