overseas/pages/index/component/promotionList.vue

196 lines
5.0 KiB
Vue
Raw Normal View History

2024-03-21 17:52:58 +08:00
<template>
<view class="index-product-wrapper" :class="iSshowH?'on':''" :style="'padding-top:'+mbConfig+'rpx;'">
<view class="nav-bd">
<view class="item" v-for="(item,index) in explosiveMoney" :index="index" :class="{active:index == ProductNavindex}"
@click="ProductNavTab(item.link.activeVal,index)">
<view class="txt">{{item.chiild[0].val}}</view>
<view class="label">{{item.chiild[1].val}}</view>
</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" v-if="item.activity && item.activity.type === '1'">秒杀</span>
<span class="pictrue_log pictrue_log_class" v-if="item.activity && item.activity.type === '2'">砍价</span>
<span class="pictrue_log pictrue_log_class" v-if="item.activity && item.activity.type === '3'">拼团</span>
<image :src="item.image" mode=""></image>
</view>
<view class="text-info">
<view class="title line1">{{item.store_name}}</view>
<view class="old-price"><text>¥</text>{{item.ot_price}}</view>
<view class="price" :style="'color:'+themeColor+';'">
<text></text>{{item.price}}
<view class="txt" :style="'border-color:'+themeColor+';'" v-if="item.checkCoupon"></view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
export default {
name: 'promotionList',
props: {
dataConfig: {
type: Object,
default: () => {}
},
tempArr: {
type: Array,
default: []
},
iSshowH: {
type: Boolean,
default: false
}
},
data() {
return {
ProductNavindex: 0,
explosiveMoney: this.dataConfig.tabConfig.list,
numConfig: this.dataConfig.numConfig.val,
// imgStyle: this.dataConfig.imgStyle.type,
mbConfig: this.dataConfig.mbConfig.val * 2,
themeColor: this.dataConfig.themeColor.color[0].item
};
},
created() {},
methods: {
// 首发新品切换
ProductNavTab(type, index) {
this.ProductNavindex = index;
this.$emit('changeTab', type);
},
goDetail(item){
this.$emit('detail',item);
}
}
}
</script>
<style lang="scss">
.index-product-wrapper {
margin: 30rpx 20rpx 0 20rpx;
&.on {
min-height: 1500rpx;
}
.nav-bd {
display: flex;
align-items: center;
justify-content: space-around;
.item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: 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-top: 5rpx;
font-size: 24rpx;
color: #999;
}
&.active {
color: $theme-color;
.label {
background: linear-gradient(90deg, $bg-star 0%, $bg-end 100%);
border-radius: 16rpx;
color: #fff;
}
}
}
}
.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: 20rpx;
overflow: hidden;
position: relative;
.pictrue_log {
width: 92rpx;
height: 44rpx;
font-size: 26rpx;
line-height: 44rpx;
}
image {
width: 100%;
height: 346rpx;
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;
color: $theme-color;
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: 1px solid $theme-color;
border-radius: 4rpx;
font-size: 20rpx;
font-weight: normal;
}
}
}
}
&.on {
display: flex;
}
}
}
</style>