123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- <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>
-
-
-
-
-
-
-
-
-
-
- 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>
|