|
|
@@ -80,6 +80,14 @@
|
|
|
<view class="label">优惠金额</view>
|
|
|
<view class="value">-¥{{ data.discountAmount?parseFloat(data.discountAmount):0 }}</view>
|
|
|
</view>
|
|
|
+ <view class="msg-list" v-if="data.orderReachDiscountPrice && Number(data.orderReachDiscountPrice) > 0">
|
|
|
+ <view class="label">订单满减</view>
|
|
|
+ <view class="value">¥{{ data.orderReachDiscountPrice?parseFloat(data.orderReachDiscountPrice):0 }}</view>
|
|
|
+ </view>
|
|
|
+ <view class="msg-list" v-if="data.hbAmount && Number(data.hbAmount) > 0">
|
|
|
+ <view class="label">红包减免</view>
|
|
|
+ <view class="value">¥{{ data.hbAmount?parseFloat(data.hbAmount):0 }}</view>
|
|
|
+ </view>
|
|
|
<view class="msg-list">
|
|
|
<view class="label">订单合计</view>
|
|
|
<view class="value">¥{{ data.orderPrice?parseFloat(data.orderPrice):0 }}</view>
|