|
|
@@ -46,7 +46,10 @@
|
|
|
<view class="content-view">
|
|
|
<view :class="['product-title', 'ellipsis']">{{ i.goods_name }}</view>
|
|
|
<view class="product-price">
|
|
|
- <text class="product-price-original" v-if="i.type == 1">{{ i.total_amount }}</text>
|
|
|
+ <template v-if="i.type == 1">
|
|
|
+ <text class="product-price-original">{{ i.total_amount }}</text>
|
|
|
+ <text class="product-price-msg">(含服务费{{$h.Mul(i.service,2)}}元)</text>
|
|
|
+ </template>
|
|
|
<text class="product-price-original" v-else>{{ i.price }}</text>
|
|
|
<text class="product-text" v-if="[3,4].includes(i.type)">赠<text class="corFE2C15">{{ i.give_cha_bao }}</text>茶宝</text>
|
|
|
</view>
|
|
|
@@ -403,6 +406,10 @@ export default {
|
|
|
margin-right: 6rpx;
|
|
|
}
|
|
|
}
|
|
|
+ .product-price-msg{
|
|
|
+ font-size: 20rpx;
|
|
|
+ color: #ff6d44;
|
|
|
+ }
|
|
|
|
|
|
.product-text {
|
|
|
margin-left: 16rpx;
|