123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346 |
- <template>
- <!-- 促销列表 -->
- <view class="index-product-wrapper" :class="iSshowH?'on':''" :style="'margin-top:'+mbConfig*2+'rpx;'" v-show="!isSortType">
- <view class="nav-bd">
- <scroll-view scroll-x="true" style="white-space: nowrap; display: flex" show-scrollbar="false">
- <view class="item" v-for="(item,index) in explosiveMoney" :index="index" @click="ProductNavTab(index)">
- <view class="txt" :style="{ 'color': index==ProductNavindex ? themeColor : txtColor }">{{item.chiild[0].val}}</view>
- <view class="label" :style="{ 'background': index==ProductNavindex ? themeColor : '','color': index==ProductNavindex ? '#fff' : infoColor }" v-if="item.chiild[1].val">{{item.chiild[1].val}}</view>
- </view>
- </scroll-view>
- </view>
- <view class="list-box animated" :class='tempArr.length > 0?"fadeIn on":""'>
- <view class="item" v-for="(item,index) in tempArr" :key="index" @click="goDetail(item)">
- <view class="pictrue">
- <span class="pictrue_log pictrue_log_class" :style="'background-color:'+labelColor" v-if="item.activity && item.activity.type === '1'">秒杀</span>
- <span class="pictrue_log pictrue_log_class" :style="'background-color:'+labelColor" v-if="item.activity && item.activity.type === '2'">砍价</span>
- <span class="pictrue_log pictrue_log_class" :style="'background-color:'+labelColor" v-if="item.activity && item.activity.type === '3'">拼团</span>
- <image :src="item.image" mode="aspectFill" v-if="!productVideoStatus || !item.video_link"></image>
- <!-- #ifndef APP-PLUS -->
- <video
- v-if="productVideoStatus && item.video_link"
- :src="item.video_link"
- :controls="false"
- :show-center-play-btn="false"
- :id="`video${item.id}`"
- :poster="item.image"
- objectFit="cover"
- :autoplay="autoplay"
- class="video"
- loop
- muted
- ></video>
- <!-- #endif -->
- <view class="activityFrame" v-if="item.activity_frame.image" :style="'background-image: url('+item.activity_frame.image+');'"></view>
- </view>
- <view class="text-info">
- <view class="title line1" v-if="titleShow">{{item.store_name}}</view>
- <!-- #ifdef H5 || APP-PLUS -->
- <slot name="center" :item="item"></slot>
- <!-- #endif -->
- <!-- #ifdef MP -->
- <slot name="center{{index}}"></slot>
- <!-- #endif -->
- <view class="old-price" v-if="opriceShow"><text>¥</text>{{item.ot_price}}</view>
- <view class="price" :style="{color:fontColor}">
- <view v-if="priceShow">
- <text>¥</text>{{item.price}}
- </view>
- <view class="txt" :style="'border:1px solid '+labelColor+';color:'+labelColor" :class="priceShow?'':'on'" v-if="item.checkCoupon && couponShow">券</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- getProductslist
- } from '@/api/store.js';
- export default {
- name: 'promotionList',
- props: {
- dataConfig: {
- type: Object,
- default: () => {}
- },
- isSortType:{
- type: String | Number,
- default:0
- },
- productVideoStatus:{
- type: Boolean,
- default: false
- }
- },
- data() {
- return {
- tempArr: [],
- iSshowH: false,
- ProductNavindex: 0,
- explosiveMoney: this.dataConfig.tabConfig.list,
- // imgStyle: this.dataConfig.imgStyle.type,
- mbConfig: this.dataConfig.mbConfig.val,
- themeColor: this.dataConfig.themeColor.color[0].item,
- titleShow: this.dataConfig.titleShow.val, //标题是否显示
- opriceShow: this.dataConfig.opriceShow.val, //原价是否显示
- priceShow: this.dataConfig.priceShow.val, //价格是否显示
- couponShow: this.dataConfig.couponShow.val,//优惠券标签是否显示
- // titleConfig: this.dataConfig.titleConfig.type, //标题位置
- fontColor: this.dataConfig.fontColor.color?this.dataConfig.fontColor.color[0].item:'',
- labelColor: this.dataConfig.labelColor.color?this.dataConfig.labelColor.color[0].item:'',
- txtColor: this.dataConfig.txtColor.color?this.dataConfig.txtColor.color[0].item:'',
- infoColor: this.dataConfig.infoColor.color?this.dataConfig.infoColor.color[0].item:'',
- // goodType: this.dataConfig.tabConfig.list[0].link.activeVal || 3,
- limit: this.$config.LIMIT,
- canPlay: false,
- autoplay: false
- // product_video_status: false
- };
- },
- watch: {
- tempArr() {
- // #ifndef APP-PLUS
- this.$nextTick(() => {
- if (this.productVideoStatus) {
- uni.getNetworkType({
- success: (res) => {
- if (['wifi', 'unknown'].includes(res.networkType)) {
- // 监听
- this.observeVideo();
- }
- if (['2g', '3g', '4g', '5g'].includes(res.networkType)) {
- if (this.$store.state.app.autoplay) {
- // 监听
- this.observeVideo();
- } else{
- this.$eventHub.$emit('confirm_video_status');
- }
- }
- }
- });
- }
- });
- // #endif
- }
- },
- created() {
- // #ifndef APP-PLUS
- // this.$eventHub.$on('product_video_status', result => {
- // this.product_video_status = result;
- // });
- this.$eventHub.$on('product_video_observe', () => {
- this.observeVideo();
- });
- // #endif
- this.productslist();
- },
- mounted(){
- },
- methods: {
- observeVideo() {
- this.autoplay = true;
- // let observer = uni.createIntersectionObserver(this, { observeAll: true });
- // observer.relativeToViewport().observe('.video', res => {
- // if (res.intersectionRatio) {
- // console.log('66666666');
- // uni.createVideoContext(res.id, this).play();
- // } else{
- // uni.createVideoContext(res.id, this).pause();
- // }
- // });
- },
- // 促销列表的点击事件;
- changeTab() {
- this.tempArr = [];
- let onloadH = true;
- this.productslist(onloadH);
- },
- productslist(onloadH) {
- let list = this.explosiveMoney[this.ProductNavindex];
- let limit = this.$config.LIMIT;
- let data = {};
- if (list.tabVal == 1) {
- data = {
- ids: list.goodsList.ids.join(','),
- };
- } else {
- data = {
- priceOrder: list.goodsSort == 2 ? 'desc' : '',
- salesOrder: list.goodsSort == 1 ? 'desc' : '',
- selectId: list.selectConfig.activeValue[list.selectConfig.activeValue.length-1] || 0,
- store_label_id: list.goodsLabel.activeValue.join(',') || '',
- limit: list.numConfig.val
- };
- }
- if (onloadH) {
- this.$set(this, 'iSshowH', true);
- }
- getProductslist(data).then(res => {
- this.$set(this, 'iSshowH', false);
- this.tempArr = res.data;
- });
- },
- // 首发新品切换
- ProductNavTab(index) {
- this.ProductNavindex = index;
- this.changeTab();
- },
- goDetail(item){
- this.$emit('detail',item);
- }
- }
- }
- </script>
- <style lang="scss">
- // 这里可以自行配置
- $border-radius: 10px;
- .index-product-wrapper {
- margin: 30rpx 20rpx 0 20rpx;
- &.on {
- min-height: 1500rpx;
- }
- .nav-bd {
- display: flex;
- align-items: center;
- margin-top: 30rpx;
- .item {
- // display: flex;
- // flex-direction: column;
- // align-items: center;
- // justify-content: center;
- width: 25%;
- display: inline-block;
- text-align: center;
-
- &.on{
- border-radius: 0;
- }
- .txt {
- font-size: 32rpx;
- color: #282828;
- }
- .label {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 124rpx;
- height: 32rpx;
- margin: 5rpx auto 0 auto;
- font-size: 24rpx;
- color: #999;
- border-radius: 16rpx;
- }
- }
- }
- .list-box {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- margin-top: 30rpx;
- .item {
- width: 345rpx;
- margin-bottom: 20rpx;
- background-color: #fff;
- border-radius: $border-radius;
- overflow: hidden;
- position: relative;
-
- .pictrue{
- position: relative;
- width: 100%;
- height: 345rpx;
- overflow: hidden;
- }
- .pictrue_log {
- width: 92rpx;
- height: 44rpx;
- font-size: 26rpx;
- line-height: 44rpx;
- }
- image {
- width: 100%;
- height: 345rpx;
- display: block;
- }
-
- .activityFrame {
- border-radius: $border-radius $border-radius 0 0;
- }
-
- .video {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 346rpx;
- border-radius: $border-radius $border-radius 0 0;
- }
- .text-info {
- padding: 10rpx 20rpx 15rpx;
- .title {
- color: #222222;
- }
- .old-price {
- margin-top: 4rpx;
- font-size: 26rpx;
- color: #AAAAAA;
- text-decoration: line-through;
- text {
- margin-right: 2px;
- font-size: 20rpx;
- }
- }
- .price {
- display: flex;
- align-items: flex-end;
- font-size: 36rpx;
- font-weight: 550;
- text {
- padding-bottom: 4rpx;
- font-size: 26rpx;
- font-weight: normal;
- }
- .txt {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 28rpx;
- height: 28rpx;
- margin-left: 15rpx;
- margin-bottom: 10rpx;
- border-radius: 4rpx;
- font-size: 20rpx;
- font-weight: normal;
- &.on{
- margin-left: 0;
- }
- }
- }
- }
- }
- &.on {
- display: flex;
- }
- }
- }
- </style>
|