|
@@ -37,21 +37,23 @@
|
|
|
<view :style="{height: `${statusBarHeight + 50}px`}"></view>
|
|
|
<!-- #endif -->
|
|
|
</view>
|
|
|
- <view v-if="isOverdueShow" class="overdue-view flex-row flex-between">
|
|
|
- <view class="overdue-view-text flex-row">
|
|
|
- <text class="overdue-text-left">{{ $t('您已逾期') }}
|
|
|
- <text class="overdue-num">
|
|
|
- <block v-if="orderInfo.hire_duration_time">
|
|
|
- {{orderInfo.hire_duration_time.day > 0 ? orderInfo.hire_duration_time.day :'' }}<text
|
|
|
- v-if="orderInfo.hire_duration_time.day>0">{{ $t('日') }}</text>{{orderInfo.hire_duration_time.hour > 0 ? orderInfo.hire_duration_time.hour :'' }}<text
|
|
|
- v-if="orderInfo.hire_duration_time.hour>0">{{ $t('小时') }}</text>{{orderInfo.hire_duration_time.minute > 0 ? orderInfo.hire_duration_time.minute :'' }}<text
|
|
|
- v-if="orderInfo.hire_duration_time.minute>0">{{ $t('分') }}</text>
|
|
|
- </block>
|
|
|
+ <view v-if="isOverdueShow" class="overdue-view-box">
|
|
|
+ <view class="overdue-view flex-row flex-between">
|
|
|
+ <view class="overdue-view-text flex-row">
|
|
|
+ <text class="overdue-text-left">{{ $t('您已逾期') }}
|
|
|
+ <text class="overdue-num">
|
|
|
+ <block v-if="orderInfo.hire_duration_time">
|
|
|
+ {{orderInfo.hire_duration_time.day > 0 ? orderInfo.hire_duration_time.day :'' }}<text
|
|
|
+ v-if="orderInfo.hire_duration_time.day>0">{{ $t('日') }}</text>{{orderInfo.hire_duration_time.hour > 0 ? orderInfo.hire_duration_time.hour :'' }}<text
|
|
|
+ v-if="orderInfo.hire_duration_time.hour>0">{{ $t('小时') }}</text>{{orderInfo.hire_duration_time.minute > 0 ? orderInfo.hire_duration_time.minute :'' }}<text
|
|
|
+ v-if="orderInfo.hire_duration_time.minute>0">{{ $t('分') }}</text>
|
|
|
+ </block>
|
|
|
+ </text>
|
|
|
</text>
|
|
|
- </text>
|
|
|
- <text style="font-size: 24rpx;opacity: 0.5;">{{ $t('请及时续费或归还车辆') }}</text>
|
|
|
+ <text style="font-size: 24rpx;opacity: 0.5;">{{ $t('请及时续费或归还车辆') }}</text>
|
|
|
+ </view>
|
|
|
+ <view @click="routerLink('/pages/order/order')" class="renew-btn">{{ $t('去续费') }}</view>
|
|
|
</view>
|
|
|
- <view @click="routerLink('/pages/order/order')" class="renew-btn">{{ $t('去续费') }}</view>
|
|
|
</view>
|
|
|
<view class="car-img-view" >
|
|
|
<view v-if="!car_info.sold_time" class="flex-row flex-between" style="align-items: center;">
|