|
@@ -14,9 +14,9 @@
|
|
|
</view>
|
|
|
|
|
|
<view v-if="type!=100" class="car-model-price-view">
|
|
|
- <text>已选择</text>
|
|
|
+ <text>{{ $t('已选择') }}</text>
|
|
|
<text>{{leaseUnitsResult}}</text>
|
|
|
- <text style="margin-left: 12rpx;">时长 {{count}}
|
|
|
+ <text style="margin-left: 12rpx;">{{ $t('时长') }} {{count}}
|
|
|
<text>{{leaseUnits}}</text>
|
|
|
</text>
|
|
|
<!-- <text>共计{{tools.countToDay(count,type)}}天</text> -->
|
|
@@ -29,19 +29,19 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="car-plan-view">
|
|
|
- <view class="car-plan-title">用车方案</view>
|
|
|
+ <view class="car-plan-title">{{ $t('用车方案') }}</view>
|
|
|
<view class="car-plan-list-view flex-row">
|
|
|
<view v-for="(item,index) in params.rental_setting" :key="index" @click="tapSelectType(item)" :class="['flex-row' , (type == item.hire_duration_unit ? 'car-plan-list-i' : 'car-plan-list')] "
|
|
|
>
|
|
|
|
|
|
<view :class="(type == item.hire_duration_unit ? 'car-plan-unit-i' : 'car-plan-unit') ">
|
|
|
- <text v-if="item.hire_duration_unit==1">日租</text>
|
|
|
- <text v-if="item.hire_duration_unit==2">月租</text>
|
|
|
- <text v-if="item.hire_duration_unit==3">年租</text>
|
|
|
- <text v-if="item.hire_duration_unit==4">时租</text>
|
|
|
- <text v-if="item.hire_duration_unit==5">分租</text>
|
|
|
- <text v-if="item.hire_duration_unit==6">周租</text>
|
|
|
- <text v-if="item.hire_duration_unit==7">季租</text>
|
|
|
+ <text v-if="item.hire_duration_unit==1">{{ $t('日租') }}</text>
|
|
|
+ <text v-if="item.hire_duration_unit==2">{{ $t('月租') }}</text>
|
|
|
+ <text v-if="item.hire_duration_unit==3">{{ $t('年租') }}</text>
|
|
|
+ <text v-if="item.hire_duration_unit==4">{{ $t('时租') }}</text>
|
|
|
+ <text v-if="item.hire_duration_unit==5">{{ $t('分租') }}</text>
|
|
|
+ <text v-if="item.hire_duration_unit==6">{{ $t('周租') }}</text>
|
|
|
+ <text v-if="item.hire_duration_unit==7">{{ $t('季租') }}</text>
|
|
|
</view>
|
|
|
<view :class="(type == item.hire_duration_unit ? 'car-plan-price-i' : 'car-plan-price') ">$<text style="font-size: 48rpx;margin-left: 6rpx;">{{item.hire_price/100}}</text></view>
|
|
|
</view>
|
|
@@ -64,7 +64,7 @@
|
|
|
<view class="flex-row free-num-tip">自费换电:$1/次</view>
|
|
|
</view> -->
|
|
|
<view v-if="type!=100" class="plan-time flex-row flex-between">
|
|
|
- <view>租车时长</view>
|
|
|
+ <view>{{ $t('租车时长') }}</view>
|
|
|
<view class="quantity-count flex-row flex-between">
|
|
|
<view class="total-time flex-row">
|
|
|
共
|
|
@@ -92,7 +92,7 @@
|
|
|
</view> -->
|
|
|
</view>
|
|
|
<view class="lift-btn-view">
|
|
|
- <view @tap="checkOrder" class="lift-btn">确认</view>
|
|
|
+ <view @tap="checkOrder" class="lift-btn">{{ $t('确认') }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
|