提交
This commit is contained in:
@ -322,14 +322,14 @@
|
||||
<text v-else class="money">¥{{ toAmount }}</text> -->
|
||||
<view class="handle-info-cell">
|
||||
<view v-if="reservationInfo.estimatePrice != 0">
|
||||
<text class="money">¥{{ (estimatedPri - couponMoney2).toFixed(2) }}</text>
|
||||
<text class="money">¥{{ Math.max(0, estimatedPri - couponMoney2).toFixed(2) }}</text>
|
||||
<text class="app-fc12">¥</text>
|
||||
<text class="app-fc1">{{ toAmount3.toFixed(2) || "0.00" }}</text>
|
||||
<text class="app-fc1">{{ Math.max(0, toAmount3).toFixed(2) || "0.00" }}</text>
|
||||
</view>
|
||||
<view v-else>
|
||||
<text class="app-fc-main fs-30">¥</text>
|
||||
<text class="app-fc-main fs-40 app-font-bold">{{
|
||||
(toAmount2.toFixed(2) || "0.00") - couponMoney
|
||||
Math.max(0, (toAmount2.toFixed(2) || "0.00") - couponMoney)
|
||||
}}</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
Reference in New Issue
Block a user