82 lines
1.9 KiB
Vue
82 lines
1.9 KiB
Vue
<template>
|
|
<view class="flex justify-start">
|
|
<view class="cu-avatar xxl-view" :style="'background-image:url(' + product.goodsImgUrl + ');'">
|
|
</view>
|
|
<view class="margin-left-sm product-content">
|
|
<view>
|
|
<view class="text-black">{{product.goodsName}}</view>
|
|
<view class="text-sm" v-if="ifShowComments">{{product.comments}}</view>
|
|
</view>
|
|
<view class="flex justify-between align-center">
|
|
<view class="flex justify-start align-center">
|
|
<text class="text-price text-red text-bold text-xl">{{product.discountPrice}}</text>
|
|
<text class="text-del" v-if="product.goodsPrice">¥{{product.goodsPrice}}</text>
|
|
</view>
|
|
<view class="padding-xs">
|
|
<view class='cu-tag light bg-blue'>{{product.type}}</view>
|
|
</view>
|
|
</view>
|
|
<view v-if="ifShowServArea">
|
|
<view class="cu-capsule">
|
|
<view class='cu-tag bg-main-color sm'>
|
|
<text class='cuIcon-locationfill'></text>
|
|
</view>
|
|
<view class="cu-tag line-main-color sm">
|
|
服务区域
|
|
</view>
|
|
</view>
|
|
<text v-for="(item,index) in product.goodsAreaList">
|
|
<text class="margin-lr-xs text-sm">{{item.areaName}}<text v-if="index != product.goodsAreaList.length - 1">,</text></text>
|
|
</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'horizontal-goods-card',
|
|
props: {
|
|
ifShowServArea: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
ifShowComments: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
product: {
|
|
type: Object,
|
|
default: {}
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.xxl-view {
|
|
min-width: 230rpx;
|
|
min-height: 230rpx;
|
|
}
|
|
|
|
.product-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
}
|
|
|
|
.cu-list.menu-avatar>.cu-item .content .cu-tag.sm {
|
|
display: inline-block;
|
|
margin-left: 0;
|
|
height: 28rpx;
|
|
font-size: 16rpx;
|
|
line-height: 32rpx;
|
|
}
|
|
</style>
|