|
@@ -6,28 +6,28 @@
|
|
|
<navBar bgColor="transparent" left="0"></navBar>
|
|
|
<view>
|
|
|
<view v-if="orderInfo.pay_status!=2">
|
|
|
- <view class="get-time-view flex-row" v-if="orderInfo.pay_status == 0">待支付</view>
|
|
|
- <view class="get-time-view flex-row" v-else-if="orderInfo.pay_status == 1">支付中</view>
|
|
|
- <view class="get-time-view flex-row" v-else-if="orderInfo.pay_status == 3">支付失败</view>
|
|
|
- <view class="get-time-view flex-row" v-else-if="orderInfo.pay_status == 4">支付取消</view>
|
|
|
- <view class="get-time-view flex-row" v-else-if="orderInfo.pay_status == 5">线下待审核</view>
|
|
|
- <view class="get-time-view flex-row" v-else-if="orderInfo.pay_status == 6">线下审核拒绝</view>
|
|
|
+ <view class="get-time-view flex-row" v-if="orderInfo.pay_status == 0">{{ $t('待支付') }}</view>
|
|
|
+ <view class="get-time-view flex-row" v-else-if="orderInfo.pay_status == 1">{{ $t('支付中') }}</view>
|
|
|
+ <view class="get-time-view flex-row" v-else-if="orderInfo.pay_status == 3">{{ $t('支付失败') }}</view>
|
|
|
+ <view class="get-time-view flex-row" v-else-if="orderInfo.pay_status == 4">{{ $t('支付取消') }}</view>
|
|
|
+ <view class="get-time-view flex-row" v-else-if="orderInfo.pay_status == 5">{{ $t('线下待审核') }}</view>
|
|
|
+ <view class="get-time-view flex-row" v-else-if="orderInfo.pay_status == 6">{{ $t('线下审核拒绝') }}</view>
|
|
|
</view>
|
|
|
<block v-if="orderInfo.pay_status == 2">
|
|
|
- <view :class="['get-time-view', 'flex-row', 'blue-text']" v-if="orderInfo.order_status == 3">使用中...
|
|
|
+ <view :class="['get-time-view', 'flex-row', 'blue-text']" v-if="orderInfo.order_status == 3">{{ $t('使用中') }}...
|
|
|
</view>
|
|
|
- <view :class="['get-time-view', 'flex-row', 'red-text']" v-if="orderInfo.order_status == 4">已逾期
|
|
|
+ <view :class="['get-time-view', 'flex-row', 'red-text']" v-if="orderInfo.order_status == 4">{{ $t('已逾期') }}
|
|
|
</view>
|
|
|
- <view class="get-time-view flex-row" v-if="orderInfo.order_status == 2">请上传车辆图片激活车辆</view>
|
|
|
- <view class="get-time-view flex-row" v-if="orderInfo.order_status == 5">待门店确认</view>
|
|
|
- <view class="get-time-view flex-row" v-if="orderInfo.order_status == 6">还车中,等待门店取车</view>
|
|
|
- <view class="get-time-view flex-row" v-if="orderInfo.order_status == 7">已完成</view>
|
|
|
+ <view class="get-time-view flex-row" v-if="orderInfo.order_status == 2">{{ $t('请上传车辆图片激活车辆') }}</view>
|
|
|
+ <view class="get-time-view flex-row" v-if="orderInfo.order_status == 5">{{ $t('待门店确认') }}</view>
|
|
|
+ <view class="get-time-view flex-row" v-if="orderInfo.order_status == 6">{{ $t('还车中') }},{{ $t('等待门店取车') }}</view>
|
|
|
+ <view class="get-time-view flex-row" v-if="orderInfo.order_status == 7">{{ $t('已完成') }}</view>
|
|
|
<view class="get-time-view flex-row"
|
|
|
- v-if="orderInfo.order_status == 8||orderInfo.order_status == 9">已取消</view>
|
|
|
- <view class="get-time-view flex-row" v-if="orderInfo.order_status == 1 "><text>请于</text><text
|
|
|
- class="get-car-time">{{tools.formatTimeSecond( orderInfo.pick_up_time)}}</text><text>到门店取车</text>
|
|
|
+ v-if="orderInfo.order_status == 8||orderInfo.order_status == 9">{{ $t('已取消') }}</view>
|
|
|
+ <view class="get-time-view flex-row" v-if="orderInfo.order_status == 1 "><text>{{ $t('请于') }}</text><text
|
|
|
+ class="get-car-time">{{tools.formatTimeSecond( orderInfo.pick_up_time)}}</text><text>{{ $t('到门店取车') }}</text>
|
|
|
</view>
|
|
|
- <view v-if="orderInfo.order_status == 10">已完结</view>
|
|
|
+ <view v-if="orderInfo.order_status == 10">{{ $t('已完结') }}</view>
|
|
|
</block>
|
|
|
|
|
|
</view>
|
|
@@ -40,29 +40,29 @@
|
|
|
<block v-else>{{Number(orderInfo.hire_cycle) * (orderInfo.hire_duration)}}</block>
|
|
|
</view>
|
|
|
|
|
|
- <view>{{((orderInfo.order_status == 2) || orderInfo.order_status == 3)?'租期剩余':(orderInfo.order_status == 4 ? '逾期时长':'租借周期')}}·<text style="opacity: 0.4;">{{leaseUnits(orderInfo.hire_duration_unit)}}</text></view>
|
|
|
+ <view>{{((orderInfo.order_status == 2) || orderInfo.order_status == 3)?$t('租期剩余'):(orderInfo.order_status == 4 ? $t('逾期时长'):$t('租借周期'))}}·<text style="opacity: 0.4;">{{leaseUnits(orderInfo.hire_duration_unit)}}</text></view>
|
|
|
|
|
|
<!-- <view v-if="(orderInfo.order_status == 2&&orderInfo.hire_type==2) || orderInfo.order_status == 3">
|
|
|
- 租期剩余·天</view>
|
|
|
- <view v-else-if="orderInfo.order_status == 4 " class="red-status">逾期时长·天</view>
|
|
|
- <view v-else>租借周期·天</view> -->
|
|
|
+ {{ $t('租期剩余') }}·{{ $t('天') }}</view>
|
|
|
+ <view v-else-if="orderInfo.order_status == 4 " class="red-status">{{ $t('逾期时长') }}·{{ $t('天') }}</view>
|
|
|
+ <view v-else>{{ $t('租借周期') }}·{{ $t('天') }}</view> -->
|
|
|
</view>
|
|
|
<view v-if="orderInfo.order_status != 4" class="money-item">
|
|
|
<view>
|
|
|
{{(orderInfo.hire_money + orderInfo.deposit / 100).toFixed(2)}}
|
|
|
</view>
|
|
|
- <view>订单金额<text style="opacity: 0.4;">·$</text></view>
|
|
|
+ <view>{{ $t('订单金额') }}<text style="opacity: 0.4;">·$</text></view>
|
|
|
</view>
|
|
|
|
|
|
<view v-if="orderInfo.order_status == 4" class="money-item">
|
|
|
<view style="color:#F95151" class="red-status">
|
|
|
{{(orderInfo.money / 100).toFixed(2)}}
|
|
|
</view>
|
|
|
- <view style="color:#F95151">逾期金额·$</view>
|
|
|
+ <view style="color:#F95151">{{ $t('逾期金额') }}·$</view>
|
|
|
</view>
|
|
|
|
|
|
<view @tap="bindExpanded">
|
|
|
- <text>{{isExpanded?'收起':'展开'}}</text>
|
|
|
+ <text>{{isExpanded?$t('收起'): $t('展开')}}</text>
|
|
|
<img
|
|
|
:src="isExpanded?'https://qiniu.bms16.com/FvRah8ro91B_TUVEmInBq6n69W2f':'https://qiniu.bms16.com/FtbxPP0aXYG8hyJTEJfNTXa_Puuc'" />
|
|
|
</view>
|
|
@@ -71,16 +71,16 @@
|
|
|
<view v-if="orderInfo.order_type == 3" class="flex-row flex-between">
|
|
|
<view class="money-item">
|
|
|
<view></view>
|
|
|
- <view>租借周期:购买</view>
|
|
|
+ <view>{{ $t('租借周期:购买') }}</view>
|
|
|
</view>
|
|
|
<view class="money-item">
|
|
|
<view :class="orderInfo.order_status == 4?'red-status':''">
|
|
|
- {{orderInfo.order_status == 4?tools.toFix(over_fee/100):tools.toFix(orderInfo.money / 100)}}<text>元</text>
|
|
|
+ {{orderInfo.order_status == 4?tools.toFix(over_fee/100):tools.toFix(orderInfo.money / 100)}}<text>{{ $t('元') }}</text>
|
|
|
</view>
|
|
|
- <view>订单金额</view>
|
|
|
+ <view>{{ $t('订单金额') }}</view>
|
|
|
</view>
|
|
|
<view @tap="bindExpanded">
|
|
|
- <text>{{isExpanded?'收起':'展开'}}</text>
|
|
|
+ <text>{{isExpanded?$t('收起'):$t('展开')}}</text>
|
|
|
<img
|
|
|
:src="isExpanded?'https://qiniu.bms16.com/FvRah8ro91B_TUVEmInBq6n69W2f':'https://qiniu.bms16.com/FtbxPP0aXYG8hyJTEJfNTXa_Puuc'" />
|
|
|
</view>
|
|
@@ -89,32 +89,32 @@
|
|
|
<view v-if="isExpanded" class="dashed-border"></view>
|
|
|
|
|
|
<view v-if="isExpanded">
|
|
|
- <view class="big-text">订单信息</view>
|
|
|
+ <view class="big-text">{{ $t('订单信息') }}</view>
|
|
|
<view class="sn-content flex-row flex-between">
|
|
|
- <view class="sn-title">订单编号</view>
|
|
|
+ <view class="sn-title">{{ $t('订单编号') }}</view>
|
|
|
<view class="sn-text">{{orderInfo.sub_sn}}</view>
|
|
|
</view>
|
|
|
<view class="sn-content flex-row flex-between">
|
|
|
- <view class="sn-title">下单时间</view>
|
|
|
+ <view class="sn-title">{{ $t('下单时间') }}</view>
|
|
|
<view class="sn-text">{{tools.formatTime(orderInfo.ctime)}}</view>
|
|
|
</view>
|
|
|
<view v-if="orderInfo.pay_time" class="sn-content flex-row flex-between">
|
|
|
- <view class="sn-title">支付时间</view>
|
|
|
+ <view class="sn-title">{{ $t('支付时间') }}</view>
|
|
|
<view class="sn-text">{{tools.formatTime(orderInfo.pay_time)}}</view>
|
|
|
</view>
|
|
|
<view class="sn-content flex-row flex-between">
|
|
|
- <view class="sn-title">支付方式</view>
|
|
|
- <view v-if="orderInfo.pay_type == 0" class="sn-text">微信支付</view>
|
|
|
- <view v-if="orderInfo.pay_type == 1" class="sn-text">线下支付</view>
|
|
|
- <view v-if="orderInfo.pay_type == 2" class="sn-text">支付宝支付</view>
|
|
|
- <view v-if="orderInfo.pay_type == 9" class="sn-text">钱包余额支付</view>
|
|
|
+ <view class="sn-title">{{ $t('支付方式') }}</view>
|
|
|
+ <view v-if="orderInfo.pay_type == 0" class="sn-text">{{ $t('微信支付') }}</view>
|
|
|
+ <view v-if="orderInfo.pay_type == 1" class="sn-text">{{ $t('线下支付') }}</view>
|
|
|
+ <view v-if="orderInfo.pay_type == 2" class="sn-text">{{ $t('支付宝支付') }}</view>
|
|
|
+ <view v-if="orderInfo.pay_type == 9" class="sn-text">{{ $t('钱包余额支付') }}</view>
|
|
|
</view>
|
|
|
<view v-if="orderInfo.order_type != 3" class="sn-content flex-row flex-between">
|
|
|
- <view class="sn-title">租车金额</view>
|
|
|
+ <view class="sn-title">{{ $t('租车金额') }}</view>
|
|
|
<view class="sn-text">$ {{tools.toFix(orderInfo.hire_money/100)}}</view>
|
|
|
</view>
|
|
|
<view v-if="orderInfo.order_type != 3" class="sn-content flex-row flex-between">
|
|
|
- <view class="sn-title">租车押金</view>
|
|
|
+ <view class="sn-title">{{ $t('租车押金') }}</view>
|
|
|
<view class="sn-text"><text class="grey-text"></text> $
|
|
|
{{tools.toFix(orderInfo.deposit/100)}}
|
|
|
</view>
|
|
@@ -124,14 +124,14 @@
|
|
|
</view>
|
|
|
<view class="car-info">
|
|
|
<view class="flex-row flex-between" style="margin-bottom: 40rpx;">
|
|
|
- <text>自行去门店取还</text>
|
|
|
+ <text>{{ $t('自行去门店取还') }}</text>
|
|
|
<text class="distance-num">{{orderInfo.distance}}m</text>
|
|
|
</view>
|
|
|
<view class="flex-row store-img-view">
|
|
|
<img src="https://qiniu.bms16.com/FrwDlFZdSMiBgqnqDjB19PiDUmuu" alt="">
|
|
|
<view style="width: calc(100% - 180rpx);margin-left: 24rpx;">
|
|
|
<view class="store-name">{{orderInfo.shop_name}}</view>
|
|
|
- <view class="store-name-address">{{orderInfo.address || '未知地址'}}</view>
|
|
|
+ <view class="store-name-address">{{orderInfo.address || $t('未知地址')}}</view>
|
|
|
<view class="flex-row flex-between align-center">
|
|
|
<view class="flex-row time-style align-center">
|
|
|
<img v-if="orderInfo.work_begin_time && orderInfo.work_end_time"
|
|
@@ -147,16 +147,16 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="car-info">
|
|
|
- <view>车辆信息</view>
|
|
|
+ <view>{{ $t('车辆信息') }}</view>
|
|
|
<view class="car-top flex-row flex-between">
|
|
|
<view>
|
|
|
<view class="top-flex">
|
|
|
<view>{{orderInfo.model_name}}</view>
|
|
|
<view>
|
|
|
- 续航{{(orderInfo.endurance /1000).toFixed(0)}}km|重量{{(orderInfo.weight / 1000).toFixed(0)}}kg
|
|
|
+ {{ $t('续航') }}{{(orderInfo.endurance /1000).toFixed(0)}}km{{ $t('|重量') }}{{(orderInfo.weight / 1000).toFixed(0)}}kg
|
|
|
</view>
|
|
|
</view>
|
|
|
- <!-- //配套服务 -->
|
|
|
+ <!-- //{{ $t('配套服务') }} -->
|
|
|
<view class="serviceList">
|
|
|
<view v-for="(item,index) of orderInfo.service_list" :key="index" class="tag">
|
|
|
{{item}}
|
|
@@ -170,30 +170,30 @@
|
|
|
<view class="flex-row flex-between">
|
|
|
<view class="exchange-info-title flex-row align-center">
|
|
|
<img style="width: 40rpx;height: 40rpx;" src="https://qiniu.bms16.com/Fj_ifr41AqH2PijZBdOBa3SCxADg" alt="">
|
|
|
- <text style="margin-left: 16rpx;">换电信息</text>
|
|
|
+ <text style="margin-left: 16rpx;">{{ $t('换电信息') }}</text>
|
|
|
</view>
|
|
|
<view @tap="navToExchange" class="flex-row" style="margin-bottom: 28rpx;">
|
|
|
- <view class="exchange-button">共3次</view>
|
|
|
+ <view class="exchange-button">{{ $t('共') }}3{{ $t('次') }}</view>
|
|
|
<image src="https://qiniu.bms16.com/FpIN7AVzFU75slFlX-SIdnSEmn1k" style="width: 28rpx;height: 28rpx;" />
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="exchange-content">本单可享3次免费换电数,超出后需单独支付</view>
|
|
|
- <view class="exchange-content">自费换电:S1/次</view> -->
|
|
|
- <!-- <view class="exchange-content">本单您可享受{{orderInfo.gift_exchange_num}}次免费换电,
|
|
|
- 当前免费换电剩余{{(orderInfo.gift_exchange_num - orderInfo.used_exchange_num) > 0 ? (orderInfo.gift_exchange_num - orderInfo.used_exchange_num) : '0' }}次,超出后需要单独支付换电费用
|
|
|
+ <view class="exchange-content">{{ $t('本单可享') }}3{{ $t('次免费换电数,超出后需单独支付') }}</view>
|
|
|
+ <view class="exchange-content">{{ $t('自费换电') }}:S1/{{ $t('次') }}</view> -->
|
|
|
+ <!-- <view class="exchange-content">{{ $t('本单您可享受') }}{{orderInfo.gift_exchange_num}}{{ $t('次免费换电,') }}
|
|
|
+ {{ $t('当前免费换电剩余') }}{{(orderInfo.gift_exchange_num - orderInfo.used_exchange_num) > 0 ? (orderInfo.gift_exchange_num - orderInfo.used_exchange_num) : '0' }}{{ $t('次,超出后需要单独支付换电费用') }}
|
|
|
</view> -->
|
|
|
<!-- </view> -->
|
|
|
</view>
|
|
|
|
|
|
<view v-if="orderInfo.hire_begin_time!=0&&orderInfo.hire_end_time!=0" class="return-info">
|
|
|
<view class="return-top flex-row flex-between">
|
|
|
- <view>取还时间</view>
|
|
|
+ <view>{{ $t('取还时间') }}</view>
|
|
|
<view>
|
|
|
- <!-- 共3天{{orderInfo.hire_return_time.day > 0 ? orderInfo.hire_return_time.day :'' }}<text
|
|
|
- v-if="orderInfo.hire_return_time.day>0">日</text>{{orderInfo.hire_return_time.hour > 0 ? orderInfo.hire_return_time.hour :'' }}<text
|
|
|
- v-if="orderInfo.hire_return_time.hour>0">小时</text>{{orderInfo.hire_return_time.minute > 0 ? orderInfo.hire_return_time.minute :'' }}<text
|
|
|
- v-if="orderInfo.hire_return_time.minute>0">分</text> -->
|
|
|
- 共{{hireDurationUnitsFn(orderInfo.total_hire_time,orderInfo.hire_duration_unit)}}{{leaseUnits(orderInfo.hire_duration_unit)}}
|
|
|
+ <!-- {{ $t('共') }}3{{ $t('天') }}{{orderInfo.hire_return_time.day > 0 ? orderInfo.hire_return_time.day :'' }}<text
|
|
|
+ v-if="orderInfo.hire_return_time.day>0">{{ $t('日') }}</text>{{orderInfo.hire_return_time.hour > 0 ? orderInfo.hire_return_time.hour :'' }}<text
|
|
|
+ v-if="orderInfo.hire_return_time.hour>0">{{ $t('小时') }}</text>{{orderInfo.hire_return_time.minute > 0 ? orderInfo.hire_return_time.minute :'' }}<text
|
|
|
+ v-if="orderInfo.hire_return_time.minute>0">{{ $t('分') }}</text> -->
|
|
|
+ {{ $t('共') }}{{hireDurationUnitsFn(orderInfo.total_hire_time,orderInfo.hire_duration_unit)}}{{leaseUnits(orderInfo.hire_duration_unit)}}
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="return-bottom flex-row">
|
|
@@ -209,18 +209,18 @@
|
|
|
|
|
|
<view v-if="orderInfo.order_status==2||orderInfo.order_status==3||orderInfo.order_status==4"
|
|
|
class="overdue-info">
|
|
|
- <view>逾期规则</view>
|
|
|
+ <view>{{ $t('逾期规则') }}</view>
|
|
|
<view class="overdue-one">
|
|
|
- <view>1. 逾期后还可用车吗?</view>
|
|
|
- <view>如果逾期将触发智能锁车逻辑,可能导致您无法正常用车,请及时续费或联系商家处理。</view>
|
|
|
+ <view>1. {{ $t('逾期后还可用车吗') }}?</view>
|
|
|
+ <view>{{ $t('如果逾期将触发智能锁车逻辑,可能导致您无法正常用车,请及时续费或联系商家处理。') }}</view>
|
|
|
</view>
|
|
|
<view class="overdue-two">
|
|
|
- <view>2. 逾期费计算标准是什么?</view>
|
|
|
- <view>小时租逾期费=每小时费用*逾期小时;当日还/日/周/月/季租逾期费=每天费用*逾期天数;如果不满1小时按1小时算,不满1天按1天算,最终收取的逾期费以门店确认的费用为准</view>
|
|
|
+ <view>2. {{ $t('逾期费计算标准是什么') }}?</view>
|
|
|
+ <view>{{ $t('小时租逾期费') }}={{ $t('每小时费用') }}*{{ $t('逾期小时;当日还') }}/{{ $t('日') }}/{{ $t('周') }}/{{ $t('月') }}/{{ $t('季租逾期费') }}={{ $t('每天费用') }}*{{ $t('逾期天数;如果不满') }}1{{ $t('小时按') }}1{{ $t('小时算,不满') }}1{{ $t('天按') }}1{{ $t('天算,最终收取的逾期费以门店确认的费用为准') }}</view>
|
|
|
</view>
|
|
|
<view class="overdue-thr">
|
|
|
- <view>3. 逾期后续租如何收费?</view>
|
|
|
- <view>逾期后及时续租不收取逾期费,逾期时长将从续租订单的用车时间中抵扣</view>
|
|
|
+ <view>3. {{ $t('逾期后续租如何收费') }}?</view>
|
|
|
+ <view>{{ $t('逾期后及时续租不收取逾期费,逾期时长将从续租订单的用车时间中抵扣') }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="inset-bottom"></view>
|
|
@@ -228,78 +228,77 @@
|
|
|
<view>
|
|
|
<view
|
|
|
v-if="(orderInfo.order_status == 0 ||orderInfo.order_status == 1 || orderInfo.pay_status == 5 || orderInfo.pay_status == 0) && orderInfo.order_type != 3"
|
|
|
- class="cancel" @tap="clickCancel">结束订单</view>
|
|
|
+ class="cancel" @tap="clickCancel">{{ $t('结束订单') }}</view>
|
|
|
</view>
|
|
|
<view class="flex-row">
|
|
|
- <view v-if="orderInfo.order_status == 1" @tap="navToScan" class="sesame-btn ">扫码绑定</view>
|
|
|
- <view v-if="orderInfo.order_status == 2" @tap="navToScan" class="sesame-btn ">去上传</view>
|
|
|
+ <view v-if="orderInfo.order_status == 1" @tap="navToScan" class="sesame-btn ">{{ $t('扫码绑定') }}</view>
|
|
|
+ <view v-if="orderInfo.order_status == 2" @tap="navToScan" class="sesame-btn ">{{ $t('去上传') }}</view>
|
|
|
<view
|
|
|
v-if="(orderInfo.order_status == 3||orderInfo.order_status == 4) && orderInfo.order_type != 3 && orderInfo.pay_status != 5"
|
|
|
- @tap="tapReturnCar" class="deposit-btn">到店还车</view>
|
|
|
+ @tap="tapReturnCar" class="deposit-btn">{{ $t('到店还车') }}</view>
|
|
|
<view
|
|
|
v-if="(orderInfo.order_status == 3||orderInfo.order_status == 4) && orderInfo.order_type != 3 && orderInfo.pay_status != 5"
|
|
|
- @tap="bindRenew" class="sesame-btn">续租</view>
|
|
|
- <view @tap="callStorePhone" class="deposit-btn ">联系门店</view>
|
|
|
+ @tap="bindRenew" class="sesame-btn">{{ $t('续租') }}</view>
|
|
|
+ <view @tap="callStorePhone" class="deposit-btn ">{{ $t('联系门店') }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
<!-- <view class="payment-info flex-row flex-between">
|
|
|
<view v-if="orderInfo.order_status == 1 || orderInfo.pay_status == 5" class="flex-row">
|
|
|
<view v-if="orderInfo.order_type != 3"
|
|
|
- class="cancel" @tap="clickCancel">结束订单
|
|
|
+ class="cancel" @tap="clickCancel">{{ $t('结束订单') }}
|
|
|
</view>
|
|
|
- <view @tap="callStorePhone" class="deposit-btn ">联系门店</view>
|
|
|
+ <view @tap="callStorePhone" class="deposit-btn ">{{ $t('联系门店') }}</view>
|
|
|
</view>
|
|
|
<view v-if="orderInfo.order_status == 1" class="flex-row">
|
|
|
- <view @tap="callStorePhone" class="deposit-btn ">联系门店</view>
|
|
|
- <view @tap="navToScan" class="sesame-btn ">扫码绑定</view>
|
|
|
+ <view @tap="callStorePhone" class="deposit-btn ">{{ $t('联系门店') }}</view>
|
|
|
+ <view @tap="navToScan" class="sesame-btn ">{{ $t('扫码绑定') }}</view>
|
|
|
</view>
|
|
|
|
|
|
<view v-if="orderInfo.order_status == 2" class="flex-row">
|
|
|
- <view @tap="callStorePhone" class="deposit-btn ">联系门店</view>
|
|
|
- <view @tap="navToScan" class="sesame-btn ">去上传</view>
|
|
|
+ <view @tap="callStorePhone" class="deposit-btn ">{{ $t('联系门店') }}</view>
|
|
|
+ <view @tap="navToScan" class="sesame-btn ">{{ $t('去上传') }}</view>
|
|
|
</view>
|
|
|
|
|
|
<view
|
|
|
v-else-if="(orderInfo.order_status == 3||orderInfo.order_status == 4) && orderInfo.order_type != 3 && orderInfo.pay_status != 5"
|
|
|
class="flex-row">
|
|
|
- <view @tap="callStorePhone" class="cancel">联系门店</view>
|
|
|
- <view @tap="tapReturnCar" class="deposit-btn">到店还车</view>
|
|
|
- <view @tap="bindRenew" class="sesame-btn">续租</view>
|
|
|
+ <view @tap="callStorePhone" class="cancel">{{ $t('联系门店') }}</view>
|
|
|
+ <view @tap="tapReturnCar" class="deposit-btn">{{ $t('到店还车') }}</view>
|
|
|
+ <view @tap="bindRenew" class="sesame-btn">{{ $t('续租') }}</view>
|
|
|
</view>
|
|
|
|
|
|
<view v-else-if="orderInfo.order_status == 5||orderInfo.order_status == 6" @tap="callStorePhone"
|
|
|
class="pay-btn">
|
|
|
- 联系门店</view>
|
|
|
- <view v-else-if="orderInfo.order_status == 7" @tap="callStorePhone" class="pay-btn">联系门店</view>
|
|
|
+ {{ $t('联系门店') }}</view>
|
|
|
+ <view v-else-if="orderInfo.order_status == 7" @tap="callStorePhone" class="pay-btn">{{ $t('联系门店') }}</view>
|
|
|
|
|
|
|
|
|
<view v-if="orderInfo.order_type == 3 && (orderInfo.order_status == 3||orderInfo.order_status == 4)"
|
|
|
- @tap="callStorePhone" class="pay-btn">联系门店</view>
|
|
|
+ @tap="callStorePhone" class="pay-btn">{{ $t('联系门店') }}</view>
|
|
|
</view> -->
|
|
|
|
|
|
<view v-if="isShowCancel" class="cancel-b">
|
|
|
<view class="cancel-box">
|
|
|
<view class="cancel-title flex-row flex-between">
|
|
|
- <view>选择取消原因</view>
|
|
|
+ <view>{{ $t('选择取消原因') }}</view>
|
|
|
<view @tap="isShowCancel = false" style="font-size: 60rpx;">×</view>
|
|
|
</view>
|
|
|
- <view @click="reason = '行程变更无需用车'" class="cancel-item flex-row flex-between">
|
|
|
- <view>行程变更无需用车</view>
|
|
|
- <img
|
|
|
- :src="reason == '行程变更无需用车'?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
|
|
|
+ <view @click="reason = $t('行程变更无需用车')" class="cancel-item flex-row flex-between">
|
|
|
+ <view>{{ $t('行程变更无需用车') }}</view>
|
|
|
+ <img :src="reason == $t('行程变更无需用车') ? 'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
|
|
|
</view>
|
|
|
- <view @click="reason = '修改订单信息'" class="cancel-item flex-row flex-between">
|
|
|
- <view>修改订单信息</view>
|
|
|
+ <view @click="reason = $t('修改订单信息')" class="cancel-item flex-row flex-between">
|
|
|
+ <view>{{ $t('修改订单信息') }}</view>
|
|
|
<img
|
|
|
- :src="reason == '修改订单信息'?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
|
|
|
+ :src="reason == $t('修改订单信息') ?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
|
|
|
</view>
|
|
|
- <view @click="reason = '不想要了'" class="cancel-item flex-row flex-between">
|
|
|
- <view>不想要了</view>
|
|
|
+ <view @click="reason = $t('不想要了')" class="cancel-item flex-row flex-between">
|
|
|
+ <view>{{ $t('不想要了') }}</view>
|
|
|
<img
|
|
|
- :src="reason == '不想要了'?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
|
|
|
+ :src="reason == $t('不想要了') ?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
|
|
|
</view>
|
|
|
- <view @click="bindCancel" class="cancel_btn">确认取消</view>
|
|
|
+ <view @click="bindCancel" class="cancel_btn">{{ $t('确认取消') }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
@@ -356,7 +355,7 @@
|
|
|
charge_standard: {},
|
|
|
isShowCancel: false,
|
|
|
order_sn: '',
|
|
|
- reason: '行程变更无需用车',
|
|
|
+ reason: this.$t('行程变更无需用车'),
|
|
|
orderInfo: {},
|
|
|
shop_image: [],
|
|
|
isExpanded: false,
|
|
@@ -476,24 +475,24 @@
|
|
|
if (data.data.model_id == this.orderInfo.model_id) {
|
|
|
return true
|
|
|
} else {
|
|
|
- common.simpleToast('车型不匹配!')
|
|
|
+ common.simpleToast(this.$t('车型不匹配!'))
|
|
|
return false
|
|
|
}
|
|
|
|
|
|
if (data.data.is_hire == 1) {
|
|
|
return true
|
|
|
} else {
|
|
|
- common.simpleToast('车辆已被租售!')
|
|
|
+ common.simpleToast(this.$t('车辆已被租售!'))
|
|
|
return false
|
|
|
}
|
|
|
if (data.data.is_display == 1) {
|
|
|
return true
|
|
|
} else {
|
|
|
- common.simpleToast('车辆未展示!')
|
|
|
+ common.simpleToast(this.$t('车辆未展示!'))
|
|
|
return false
|
|
|
}
|
|
|
} else {
|
|
|
- common.simpleToast('请扫描正确的二维码!')
|
|
|
+ common.simpleToast(this.$t('请扫描正确的二维码!'))
|
|
|
return false
|
|
|
}
|
|
|
return false
|
|
@@ -542,19 +541,19 @@
|
|
|
|
|
|
hireDurationUnitFn(type) {
|
|
|
if (type == 1) {
|
|
|
- return '天'
|
|
|
+ return this.$t('天')
|
|
|
} else if (type == 2) {
|
|
|
- return '月'
|
|
|
+ return this.$t('月')
|
|
|
} else if (type == 3) {
|
|
|
- return '年'
|
|
|
+ return this.$t('年')
|
|
|
} else if (type == 4) {
|
|
|
- return '小时'
|
|
|
+ return this.$t('小时')
|
|
|
} else if (type == 5) {
|
|
|
- return '分钟'
|
|
|
+ return this.$t('分钟')
|
|
|
} else if (type == 6) {
|
|
|
- return '周'
|
|
|
+ return this.$t('周')
|
|
|
} else if (type == 7) {
|
|
|
- return '季'
|
|
|
+ return this.$t('季')
|
|
|
}
|
|
|
},
|
|
|
hireDurationUnitsFn(time, type) {
|
|
@@ -715,11 +714,11 @@
|
|
|
async bindCancel() {
|
|
|
const me = this
|
|
|
let res = await uni.showModal({
|
|
|
- title: '取消订单',
|
|
|
- content: '您是否需要取消该订单',
|
|
|
- confirmText: '是',
|
|
|
+ title: this.$t('取消订单'),
|
|
|
+ content: this.$t('您是否需要取消该订单'),
|
|
|
+ confirmText: this.$t('是'),
|
|
|
confirmColor: '#0074FF',
|
|
|
- cancelText: '否',
|
|
|
+ cancelText: this.$t('否'),
|
|
|
cancelColor: '#191D23',
|
|
|
});
|
|
|
if (res[1].confirm) {
|
|
@@ -771,7 +770,7 @@
|
|
|
const phone = me.shopInfo.link_phone
|
|
|
uni.showModal({
|
|
|
content: `您是否要拨打电话${phone}?`,
|
|
|
- confirmText: '确定',
|
|
|
+ confirmText: this.$t('确定'),
|
|
|
success: (res) => {
|
|
|
if (res.confirm) {
|
|
|
uni.makePhoneCall({
|
|
@@ -877,7 +876,7 @@
|
|
|
.last_comm_time) > 1800
|
|
|
me.plate_number = resp.data.data.license_plate_number
|
|
|
if (resp.data.data.last_comm_time === 0 || isOffline) {
|
|
|
- common.simpleToast('此车辆已离线,请选择其他车辆')
|
|
|
+ common.simpleToast(this.$t('此车辆已离线,请选择其他车辆'))
|
|
|
} else {
|
|
|
let carInfo = JSON.stringify(resp.data.data)
|
|
|
const car_model = resp.data.data.model_info.car_model
|
|
@@ -887,10 +886,10 @@
|
|
|
if (resp.data.data.has_owner) { //车辆正在被使用
|
|
|
if (resp.data.data.is_mine) { //是本人在使用
|
|
|
wx.showModal({
|
|
|
- title: '提示',
|
|
|
+ title: this.$t('提示'),
|
|
|
content: '已有正在使用的车辆,是否跳转至车辆详情页?',
|
|
|
- cancelText: '取消',
|
|
|
- confirmText: '确定',
|
|
|
+ cancelText: this.$t('取消'),
|
|
|
+ confirmText: this.$t('确定'),
|
|
|
success: function(res) {
|
|
|
this.isReturnHome = false
|
|
|
uni.navigateTo({
|
|
@@ -902,12 +901,12 @@
|
|
|
complete: function(res) {},
|
|
|
})
|
|
|
} else {
|
|
|
- common.simpleToast('此车辆正在被使用')
|
|
|
+ common.simpleToast(this.$t('此车辆正在被使用'))
|
|
|
}
|
|
|
} else {
|
|
|
if (me.order_sn && me.order_sn != '') {
|
|
|
if (this.orderInfo.model_id != model_id) { // 预租车型与之前预约车型不一致
|
|
|
- common.simpleToast('与预约车型不符')
|
|
|
+ common.simpleToast(this.$t('与预约车型不符'))
|
|
|
} else {
|
|
|
this.isReturnHome = false
|
|
|
uni.navigateTo({
|
|
@@ -962,14 +961,14 @@
|
|
|
tradeNO: resp.data.data.trade_no,
|
|
|
success: function(res) {
|
|
|
if (res.resultCode == 9000) {
|
|
|
- common.simpleToast('支付成功');
|
|
|
+ common.simpleToast(this.$t('支付成功'));
|
|
|
}
|
|
|
setTimeout(function() {
|
|
|
me.bindOrderInfo()
|
|
|
}, 1000)
|
|
|
},
|
|
|
fail: function(res) {
|
|
|
- common.simpleToast('支付失败,请重试')
|
|
|
+ common.simpleToast(this.$t('支付失败,请重试'))
|
|
|
},
|
|
|
})
|
|
|
//#endif
|
|
@@ -977,12 +976,12 @@
|
|
|
var payParams = JSON.parse(resp.data.data.payParams);
|
|
|
user.wxPay(me.order_sn, payParams, function(isSuccess) {
|
|
|
if (isSuccess) {
|
|
|
- common.simpleToast('支付成功')
|
|
|
+ common.simpleToast(this.$t('支付成功'))
|
|
|
setTimeout(function() {
|
|
|
me.bindOrderInfo()
|
|
|
}, 1000)
|
|
|
} else {
|
|
|
- common.simpleToast('支付失败,请重试')
|
|
|
+ common.simpleToast(this.$t('支付失败,请重试'))
|
|
|
}
|
|
|
});
|
|
|
//#endif
|
|
@@ -1065,7 +1064,7 @@
|
|
|
this.bindOrderInfo()
|
|
|
},
|
|
|
navToExchange() {
|
|
|
- console.log('跳转换电记录');
|
|
|
+ console.log(this.$t('跳转换电记录'));
|
|
|
uni.navigateTo({
|
|
|
url: '/pages/exchangeRecord/exchangeRecord' +
|
|
|
'?order_sn=' + this.orderInfo.order_sn
|