185 lines
5.4 KiB
Vue
185 lines
5.4 KiB
Vue
<template>
|
|
<view class="goods-item">
|
|
<view class="bg"> {{item.shop_vip.message}} </view>
|
|
<image :src="item.cover" mode="aspectFill" class="goods-cover" />
|
|
<view class="tags"> VIP </view>
|
|
<view class="goods-info">
|
|
<view class="_title">{{item.name}}</view>
|
|
<view class="_des"> {{item.shop.name}} </view>
|
|
<view class="_pin" v-if="item.sales>0">
|
|
<view class="_has">
|
|
<image src="/static/book/fire.png" mode="widthFix" class="fire" /> 已换购 {{item.sales}} 件
|
|
</view>
|
|
</view>
|
|
<view class="price">
|
|
<view class="money">
|
|
{{item.price.price_min}} <span>DT积分</span>
|
|
<span class='del'>{{item.original_price}} DT积分</span>
|
|
</view>
|
|
<view class="now-pin" @click="goPin(item.goods_id)">立即领取</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
props: {
|
|
item: {
|
|
type: Object,
|
|
default: {},
|
|
}
|
|
},
|
|
methods: {
|
|
goPin(id) {
|
|
this.$emit('goPin', id)
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.goods-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
box-sizing: border-box;
|
|
background-color: white;
|
|
border-radius: 10rpx;
|
|
padding: $padding;
|
|
margin-bottom: 20rpx;
|
|
position: relative;
|
|
z-index: 0;
|
|
overflow: hidden;
|
|
|
|
.bg {
|
|
position: absolute;
|
|
top: -40rpx;
|
|
right: -10rpx;
|
|
opacity: 0.05;
|
|
font-size: 130rpx;
|
|
color: #999;
|
|
z-index: 1;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.tags {
|
|
position: absolute;
|
|
top: 6rpx;
|
|
left: -54rpx;
|
|
background: #d81e06;
|
|
color: #fff;
|
|
width: 150rpx;
|
|
font-size: 24rpx;
|
|
padding: 4rpx 0;
|
|
text-align: center;
|
|
transform: rotate(-45deg);
|
|
font-weight: bold;
|
|
letter-spacing: 2rpx;
|
|
}
|
|
|
|
.goods-cover {
|
|
width: 160rpx;
|
|
height: 160rpx;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.goods-info {
|
|
width: calc(100% - 160rpx - 30rpx);
|
|
padding-left: $padding;
|
|
|
|
._title {
|
|
overflow: hidden;
|
|
font-size: 30rpx;
|
|
font-weight: 600;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
._des {
|
|
font-size: 26rpx;
|
|
padding: 10rpx 0;
|
|
margin-bottom: 4rpx;
|
|
color: #4f300a;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
._pin {
|
|
font-size: 26rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
box-sizing: border-box;
|
|
color: $text-gray;
|
|
|
|
._has {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
box-sizing: border-box;
|
|
color: #d81e06;
|
|
background-color: rgba($color: $text-price, $alpha: 0.1);
|
|
padding: 4rpx 10rpx;
|
|
border-radius: 30rpx;
|
|
|
|
image {
|
|
width: 24rpx;
|
|
height: 24rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
}
|
|
|
|
.tuan {
|
|
margin-left: $margin;
|
|
}
|
|
}
|
|
|
|
.price {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding-top: 20rpx;
|
|
|
|
.money {
|
|
font-size: 34rpx;
|
|
font-weight: 600;
|
|
color: #d81e06;
|
|
|
|
span {
|
|
font-size: 24rpx;
|
|
margin-left: 10rpx;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.del {
|
|
text-decoration: line-through;
|
|
margin-left: 10rpx;
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
|
|
.now-pin {
|
|
background-color: #d81e06;
|
|
font-size: 28rpx;
|
|
font-weight: bold;
|
|
padding: 6rpx 20rpx;
|
|
border-radius: 20rpx;
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|