This commit is contained in:
2026-03-20 16:40:16 +08:00
parent deb949600b
commit 230bb76f63
23 changed files with 9306 additions and 637 deletions

View File

@ -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>