This commit is contained in:
parent
6cf8dba01a
commit
34b4201785
|
@ -188,7 +188,8 @@
|
|||
</view>
|
||||
<view class="flex justify-between" style="margin-top: 19rpx;padding-bottom:5px ;margin-bottom: 5px;">
|
||||
<view style="color: #999;font-size: 26rpx;">出行费用</view>
|
||||
<view class="" style="color: #333;font-size: 26rpx;">¥{{order.taxiMoney}}</view>
|
||||
<view class="" style="color: #333;font-size: 26rpx;" v-if="order.taxiMoney">¥{{order.taxiMoney}}</view>
|
||||
<view class="" style="color: #333;font-size: 26rpx;" v-else>-</view>
|
||||
</view>
|
||||
<view class="jusitify-line-end"></view>
|
||||
<view class="justify-title-nav">
|
||||
|
@ -212,8 +213,10 @@
|
|||
</view>
|
||||
<view class="flex align-center margin-top-lg justify-between">
|
||||
<view style="color: #333;font-size: 26rpx;">出行费用:</view>
|
||||
<view class="" style="color: #333;">¥<text
|
||||
style="font-size: 26rpx;font-weight: bold;">{{order.taxiMoney}}</text></view>
|
||||
<view class="" style="color: #333;" v-if="order.taxiMoney">¥
|
||||
<text style="font-size: 26rpx;font-weight: bold;">{{order.taxiMoney}}</text>
|
||||
</view>
|
||||
<view class="" style="color: #333;font-size: 26rpx;" v-else>-</view>
|
||||
</view>
|
||||
<view class="flex align-center margin-top-lg justify-between">
|
||||
<view style="color: #333;font-size: 26rpx;">优惠券:</view>
|
||||
|
@ -322,7 +325,8 @@
|
|||
</view>
|
||||
<view class="flex justify-between" style="margin-top: 19rpx;padding-bottom:5px ;margin-bottom: 5px;">
|
||||
<view style="color: #999;font-size: 26rpx;">出行费用</view>
|
||||
<view class="" style="color: #333;font-size: 26rpx;">¥{{order.taxiMoney}}</view>
|
||||
<view class="" style="color: #333;font-size: 26rpx;" v-if="order.taxiMoney">¥{{order.taxiMoney}}</view>
|
||||
<view class="" style="color: #333;font-size: 26rpx;" v-else>-</view>
|
||||
</view>
|
||||
<view class="jusitify-line-end"></view>
|
||||
<view class="justify-title-nav">
|
||||
|
@ -346,8 +350,11 @@
|
|||
</view>
|
||||
<view class="flex align-center margin-top-lg justify-between">
|
||||
<view style="color: #333;font-size: 26rpx;">出行费用:</view>
|
||||
<view class="" style="color: #333;">¥<text
|
||||
style="font-size: 26rpx;font-weight: bold;">{{order.taxiMoney}}</text></view>
|
||||
|
||||
<view class="" style="color: #333;" v-if="order.taxiMoney">¥
|
||||
<text style="font-size: 26rpx;font-weight: bold;">{{order.taxiMoney}}</text>
|
||||
</view>
|
||||
<view class="" style="color: #333;font-size: 26rpx;" v-else>-</view>
|
||||
</view>
|
||||
<view class="flex align-center margin-top-lg justify-between">
|
||||
<view style="color: #333;font-size: 26rpx;">优惠券:</view>
|
||||
|
|
|
@ -218,7 +218,8 @@
|
|||
</view>
|
||||
<view class="fei-view-list">
|
||||
<span>出行费用</span>
|
||||
<span>¥{{order.taxiMoney}}</span>
|
||||
<span v-if='order.taxiMoney'>¥{{order.taxiMoney}}</span>
|
||||
<span v-else>-</span>
|
||||
</view>
|
||||
<view class="fei-view-list-z">
|
||||
<span>总金额</span>
|
||||
|
|
|
@ -235,8 +235,9 @@
|
|||
</view>
|
||||
<view class="flex align-center margin-top-lg justify-between" v-if="order.taxiMoney">
|
||||
<view style="color: #333;font-size: 26rpx;">出行费用:</view>
|
||||
<view class="" style="color: #333;">¥<text
|
||||
<view class="" style="color: #333;" v-if="order.taxiMoney">¥<text
|
||||
style="font-size: 26rpx;font-weight: bold;">{{order.taxiMoney}}</text></view>
|
||||
<view class="" style="color: #333;" v-else>-</view>
|
||||
</view>
|
||||
<view class="flex align-center margin-top-lg justify-between">
|
||||
<view style="color: #333;font-size: 26rpx;">优惠券:</view>
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue