|
|
@@ -15,10 +15,12 @@
|
|
|
<view class="status-text app-size-36 app-bold">{{ pageTit }}</view>
|
|
|
<block v-if="pageStatus == 1 || pageStatus == 2">
|
|
|
|
|
|
- <view class="price" v-if="Number(orderInfo.hbAmount)>0 || Number(orderInfo.discountAmount)>0">
|
|
|
- <view style="text-decoration:line-through;font-size:30upx;font-weight:bold;color:#8a7f7f;">¥{{ parseFloat((Number(orderInfo.hbAmount)+Number(orderInfo.actPrice)+Number(orderInfo.discountAmount)).toFixed(2)) }}</view>
|
|
|
+ <view class="price" v-if="Number(orderInfo.hbAmount)>0 || Number(orderInfo.discountAmount)>0 || Number(orderInfo.orderReachDiscountPrice)>0">
|
|
|
+ <view style="text-decoration:line-through;font-size:30upx;font-weight:bold;color:#8a7f7f;">¥{{ parseFloat((Number(orderInfo.hbAmount)+Number(orderInfo.actPrice)+Number(orderInfo.discountAmount)+Number(orderInfo.orderReachDiscountPrice)).toFixed(2)) }}</view>
|
|
|
<view style="color:red;font-size:30upx;font-weight:bold;margin-bottom:10upx;" v-if="Number(orderInfo.hbAmount)>0">红包 -¥{{ parseFloat(orderInfo.hbAmount) }}</view>
|
|
|
<view style="color:red;font-size:30upx;font-weight:bold;margin-bottom:10upx;" v-if="Number(orderInfo.discountAmount)>0">订单优惠 -¥{{ parseFloat(orderInfo.discountAmount) }}</view>
|
|
|
+ <div class="order-num app-color-3" style="color:red;font-size:30upx;margin-top:10upx;margin-bottom:10upx;font-weight:bold;"
|
|
|
+ v-if="orderInfo.orderReachDiscountPrice && Number(orderInfo.orderReachDiscountPrice)>0">整单满减 -¥{{ parseFloat(orderInfo.orderReachDiscountPrice) }}</div>
|
|
|
<span class="app-size-36 app-bold">¥{{ orderInfo.actPrice?parseFloat(orderInfo.actPrice):0 }}</span>
|
|
|
</view>
|
|
|
<view class="price" v-else>
|