123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486 |
- <template>
- <!-- 商品列表 -->
- <view v-show="!isSortType" :style="{padding:'0 '+prConfig+'px'}">
- <view class="index-product-wrapper" :class="bgStyle===0?'':'borderRadius15'" :style="{ marginTop: mbConfig*2 + 'rpx', background: themeColor }" v-if="tempArr.length">
- <!-- 单列 -->
- <block v-if="itemStyle == 0">
- <view class="list-box listA" :class="tempArr.length > 0 ? 'fadeIn on' : ''">
- <view class="item" :class="conStyle?'borderRadius15':''" 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"></image>
- <view class="activityFrame" v-if="item.activity_frame.image" :style="'background-image: url('+item.activity_frame.image+');'"></view>
- </view>
- <view class="text-info text-add" >
- <view>
- <view class="title line2" v-if="titleShow">{{ item.store_name }}</view>
- <slot name="center"></slot>
- <view class="old-price" v-if="opriceShow">
- <text>¥</text>
- {{ item.ot_price }}
- </view>
- </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>
- </block>
- <!-- 两列 -->
- <block v-if="itemStyle == 1">
- <view class="list-box listC" :class="tempArr.length > 0 ? 'fadeIn on' : ''">
- <view class="item" :class="conStyle?'borderRadius15':''" 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"></image>
- <!-- #ifndef APP-PLUS -->
- <video
- v-if="product_video_status && item.video_link"
- :src="item.video_link"
- :controls="false"
- :show-center-play-btn="false"
- :id="`video${item.id}`"
- :poster="item.image"
- objectFit="cover"
- 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>
- <slot name="center"></slot>
- <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>
- </block>
- <!-- 三列 -->
- <block v-if="itemStyle == 2">
- <view class="list-box listB" :class="tempArr.length > 0 ? 'fadeIn on' : ''">
- <view class="item" :class="conStyle?'borderRadius15':''" 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"></image>
- <view class="activityFrame" v-if="item.activity_frame.image" :style="'background-image: url('+item.activity_frame.image+');'"></view>
- </view>
- <view class="text-info text-add">
- <view>
- <view class="title line1" v-if="titleShow">{{ item.store_name }}</view>
- <slot name="center"></slot>
- <view class="old-price" v-if="opriceShow">
- <text>¥</text>
- {{ item.ot_price }}
- </view>
- </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>
- </block>
- </view>
- <!-- 大图 -->
- <block v-if="itemStyle == 3 && tempArr.length" :style="{ marginTop: mbConfig + 'rpx' }">
- <view class="listBig" :class="bgStyle===0?'':'borderRadius15'" :style="{ background: themeColor }">
- <view class="itemBig" :class="conStyle?'borderRadius15':''" v-for="(item,index) in tempArr" :key="index" @click="goDetail(item)">
- <view class="img-box">
- <span class="pictrue_log_big pictrue_log_class" :style="'background-color:'+labelColor" v-if="item.activity && item.activity.type === '1'">秒杀</span>
- <span class="pictrue_log_big pictrue_log_class" :style="'background-color:'+labelColor" v-if="item.activity && item.activity.type === '2'">砍价</span>
- <span class="pictrue_log_big pictrue_log_class" :style="'background-color:'+labelColor" v-if="item.activity && item.activity.type === '3'">拼团</span>
- <image :src="item.recommend_image" mode="aspectFill" v-if="item.recommend_image"></image>
- <image :src="item.image" mode="aspectFill" v-else></image>
- </view>
- <view class="name line2"><span class="coupon" :style="'border:1px solid '+labelColor+';color:'+labelColor" v-if="item.checkCoupon && couponShow">券</span><span v-if="titleShow">{{item.store_name}}</span></view>
- <slot name="center"></slot>
- <view class="price" :style="'color:'+fontColor"><span v-if="priceShow">¥<span class="num">{{item.price}}</span></span><span class="old-price"
- v-if="opriceShow">¥{{item.ot_price}}</span></view>
- </view>
- </view>
- </block>
- </view>
- </template>
- <script>
- import {
- getProductslist
- } from '@/api/store.js';
- export default {
- name: 'goodList',
- props: {
- dataConfig: {
- type: Object,
- default: () => {}
- },
- isSortType: {
- type: String | Number,
- default: 0
- }
- },
- data() {
- return {
- tempArr: [],
- // scrollTop:0,
- mbConfig: this.dataConfig.mbConfig.val,
- numConfig: this.dataConfig.numConfig.val,
- themeColor: this.dataConfig.themeColor.color[0].item,
- itemStyle: this.dataConfig.itemStyle.type,
- sortType: this.dataConfig.goodsSort.type,
- type: this.dataConfig.tabConfig.tabVal || 0,
- selectId: this.dataConfig.selectConfig.activeValue, //分类id
- storeLabelId: this.dataConfig.goodsLabel.activeValue, //标签id
- productIds: this.dataConfig.goodsList.ids || [],
- opriceShow: this.dataConfig.opriceShow.val, //商品原价
- priceShow: this.dataConfig.priceShow.val, //商品价格
- titleShow: this.dataConfig.titleShow.val, //商品名称
- couponShow: this.dataConfig.couponShow.val, //商品优惠券
- prConfig: this.dataConfig.prConfig.val, //左右边距
- bgStyle: this.dataConfig.bgStyle.type,//背景样式
- conStyle: this.dataConfig.conStyle.type,//内容样式
- fontColor: this.dataConfig.fontColor.color?this.dataConfig.fontColor.color[0].item:'',
- labelColor: this.dataConfig.labelColor.color?this.dataConfig.labelColor.color[0].item:'',
- canPlay: false,
- product_video_status: false,
- confirm_video_status: false,
- confirm_video_result: false,
- };
- },
- watch: {
- tempArr() {
- // #ifndef APP-PLUS
- this.$nextTick(() => {
- if (this.itemStyle != 1) {
- return;
- }
- if (this.product_video_status) {
- 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
- },
- mounted() {
- this.productslist();
- },
- // onPageScroll({scrollTop}) {
- // // 传入scrollTop值并触发所有easy-loadimage组件下的滚动监听事件
- // this.scrollTop = scrollTop;
- // },
- methods: {
- observeVideo() {
- let observer = uni.createIntersectionObserver(this, { observeAll: true });
- observer.relativeToViewport().observe('.video', res => {
- if (res.intersectionRatio) {
- uni.createVideoContext(res.id, this).play();
- } else{
- uni.createVideoContext(res.id, this).pause();
- }
- });
- },
- productslist() {
- let limit = this.$config.LIMIT;
- let data = {};
- if (this.type == 1) {
- data = {
- ids: this.productIds.join(','),
- };
- } else {
- data = {
- priceOrder: this.sortType == 2 ? 'desc' : '',
- salesOrder: this.sortType == 1 ? 'desc' : '',
- selectId: this.selectId[this.selectId.length-1] || 0,
- store_label_id: this.storeLabelId.join(',') || '',
- limit: this.numConfig
- };
- }
- getProductslist(data).then(res => {
- this.tempArr = res.data;
- });
- },
- goDetail(item) {
- this.$emit('detail', item);
- }
- }
- };
- </script>
- <style lang="scss">
- // 这里可以自行配置
- $border-radius: 10px;
- .text-add {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .listBig {
- padding: 1px 20rpx 20rpx 20rpx;
- .borderRadius15{
- image{
- border-radius: $border-radius $border-radius 0 0;
- }
- }
- .itemBig {
- width: 100%;
- margin-top: 20rpx;
- background-color: #fff;
- padding-bottom: 15rpx;
-
- .img-box {
- width: 100%;
- height: 284rpx;
- position: relative;
- .pictrue_log_big{
- border-radius: $border-radius 0 $border-radius 0;
- }
- image {
- width: 100%;
- height: 100%;
- }
- }
- .name {
- font-size: 28rpx;
- font-weight: bold;
- margin-top: 16rpx;
- padding: 0 8px;
- .coupon {
- display: inline-block;
- text-align: center;
- width: 32rpx;
- border-radius: 4rpx;
- font-size: 20rpx;
- font-weight: normal;
- margin-right: 10rpx;
- }
- }
- .price {
- font-weight: bold;
- font-size: 12px;
- margin-top: 10rpx;
- padding: 0 8px;
- .num {
- font-size: 32rpx;
- margin-right: 10rpx;
- }
- .old-price {
- color: #aaa;
- font-weight: normal;
- text-decoration: line-through;
- }
- }
- }
- }
- .index-product-wrapper {
- .list-box {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- padding: 20rpx 20rpx 0;
- .item {
- width: 345rpx;
- margin-bottom: 20rpx;
- background-color: #fff;
- overflow: hidden;
- position: relative;
- &.on {
- border-radius: 0;
- }
- .pictrue {
- width: 347rpx;
- height: 347rpx;
- position: relative;
- }
- .pictrue_log {
- width: 92rpx;
- height: 44rpx;
- font-size: 26rpx;
- line-height: 44rpx;
- border-radius: 0 0 $border-radius 0!important;
- }
- image {
- width: 100%;
- // height: 346rpx;
- height: 100%;
- display: block;
- }
- .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;
- }
- &.listA {
- .item {
- display: flex;
- width: 100%;
- .pictrue {
- width: 220rpx;
- height: 220rpx;
- }
- .text-info {
- // width: 490rpx;
- flex: 1
- }
- }
- }
- &.listC {
- .item{
- width: 48.5%;
- }
- .pictrue {
- width: 100%;
- height: 345rpx;
- }
-
- .video {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 345rpx;
- border-radius: $border-radius $border-radius 0 0;
- }
-
- .activityFrame {
- border-radius: $border-radius $border-radius 0 0;
- }
- }
- &.listB {
- justify-content: inherit;
- .item {
- width: 31.6%;
- margin-right: 16rpx;
- .pictrue {
- width: 100%;
- height: 220rpx;
- }
- &:nth-child(3n) {
- margin-right: 0;
- }
- }
- }
- }
- }
- </style>
|