|
@@ -3,46 +3,71 @@
|
|
<view class="time-info">
|
|
<view class="time-info">
|
|
<view>
|
|
<view>
|
|
<view v-if="orderInfo.pay_status!=2">
|
|
<view v-if="orderInfo.pay_status!=2">
|
|
- <view v-if="orderInfo.pay_status == 0">待支付</view>
|
|
|
|
- <view v-else-if="orderInfo.pay_status == 1">支付中</view>
|
|
|
|
- <view v-else-if="orderInfo.pay_status == 3">支付失败</view>
|
|
|
|
- <view v-else-if="orderInfo.pay_status == 4">支付取消</view>
|
|
|
|
- <view v-else-if="orderInfo.pay_status == 5">线下待审核</view>
|
|
|
|
- <view v-else-if="orderInfo.pay_status == 6">线下审核拒绝</view>
|
|
|
|
|
|
+ <view v-if="orderInfo.pay_status == 0">待支付</view>
|
|
|
|
+ <view v-else-if="orderInfo.pay_status == 1">支付中</view>
|
|
|
|
+ <view v-else-if="orderInfo.pay_status == 3">支付失败</view>
|
|
|
|
+ <view v-else-if="orderInfo.pay_status == 4">支付取消</view>
|
|
|
|
+ <view v-else-if="orderInfo.pay_status == 5">线下待审核</view>
|
|
|
|
+ <view v-else-if="orderInfo.pay_status == 6">线下审核拒绝</view>
|
|
</view>
|
|
</view>
|
|
- <view v-if="orderInfo.order_status == 1">
|
|
|
|
- {{orderInfo.return_type == 1?('请于'+tools.formatTimeSecond(orderInfo.hire_begin_time)+'到门店取车'):('将于'+tools.formatTimeSecond(orderInfo.hire_begin_time)+'送车上门')}}
|
|
|
|
|
|
+ <view v-if="orderInfo.order_status == 1 && orderInfo.hire_begin_time">
|
|
|
|
+ {{('请于'+orderInfo.hire_begin_time+'到门店取车')}}
|
|
|
|
+
|
|
</view>
|
|
</view>
|
|
- <view v-else-if="orderInfo.order_status == 2">请上传车辆图片激活车辆</view>
|
|
|
|
- <view v-else-if="orderInfo.order_status == 3" class="blue-text">使用中...</view>
|
|
|
|
- <view v-else-if="orderInfo.order_status == 4" class="red-text">已逾期</view>
|
|
|
|
- <view v-else-if="orderInfo.order_status == 5">待门店确认</view>
|
|
|
|
- <view v-else-if="orderInfo.order_status == 6">还车中,等待门店取车</view>
|
|
|
|
- <view v-else-if="orderInfo.order_status == 7">已完成</view>
|
|
|
|
- <view v-else-if="orderInfo.order_status == 8||orderInfo.order_status == 9">已取消</view>
|
|
|
|
|
|
+ <view v-if="orderInfo.order_status == 1 && !orderInfo.hire_begin_time">
|
|
|
|
+ 待取车
|
|
</view>
|
|
</view>
|
|
|
|
+ <view v-if="orderInfo.order_status == 2">请上传车辆图片激活车辆</view>
|
|
|
|
+ <block v-if="orderInfo.pay_status == 2">
|
|
|
|
+ <view v-if="orderInfo.order_status == 3" class="blue-text">使用中...</view>
|
|
|
|
+ <view v-if="orderInfo.order_status == 4" class="red-text">已逾期</view>
|
|
|
|
+ <view v-if="orderInfo.order_status == 5">待门店确认</view>
|
|
|
|
+ <view v-if="orderInfo.order_status == 6">还车中,等待门店取车</view>
|
|
|
|
+ <view v-if="orderInfo.order_status == 7">已完成</view>
|
|
|
|
+ </block>
|
|
|
|
+ <view v-if="orderInfo.order_status == 8||orderInfo.order_status == 9">已取消</view>
|
|
|
|
+ </view>
|
|
|
|
+
|
|
<view class="time-money">
|
|
<view class="time-money">
|
|
- <view class="flex-row flex-between">
|
|
|
|
|
|
+ <view v-if="orderInfo.order_type != 3" class="flex-row flex-between">
|
|
<view class="money-item">
|
|
<view class="money-item">
|
|
<view :class="orderInfo.order_status == 4?'red-status':''">
|
|
<view :class="orderInfo.order_status == 4?'red-status':''">
|
|
{{orderInfo.hire_duration_time.day > 0 ? orderInfo.hire_duration_time.day :'' }}<text
|
|
{{orderInfo.hire_duration_time.day > 0 ? orderInfo.hire_duration_time.day :'' }}<text
|
|
- v-if="orderInfo.hire_duration_time.day>0">日</text>{{orderInfo.hire_duration_time.hour > 0 ? orderInfo.hire_duration_time.hour :'' }}<text
|
|
|
|
- v-if="orderInfo.hire_duration_time.hour>0">小时</text>{{orderInfo.hire_duration_time.minute > 0 ? orderInfo.hire_duration_time.minute :'' }}<text
|
|
|
|
- v-if="orderInfo.hire_duration_time.minute>0">分</text>
|
|
|
|
|
|
+ v-if="orderInfo.hire_duration_time.day>0">日</text>{{orderInfo.hire_duration_time.hour > 0 ? orderInfo.hire_duration_time.hour :'' }}<text
|
|
|
|
+ v-if="orderInfo.hire_duration_time.hour>0">小时</text>{{orderInfo.hire_duration_time.minute > 0 ? orderInfo.hire_duration_time.minute :'' }}<text
|
|
|
|
+ v-if="orderInfo.hire_duration_time.minute>0">分</text>
|
|
</view>
|
|
</view>
|
|
- <view v-if="(orderInfo.order_status == 2&&orderInfo.hire_type==2) || orderInfo.order_status == 3">租期剩余</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-if="orderInfo.order_status == 4" class="red-status">逾期时长</view>
|
|
- <view v-else>租借周期</view>
|
|
|
|
- <!-- <view
|
|
|
|
- v-if="(orderInfo.order_status != 2&&orderInfo.hire_type==1) && orderInfo.order_status != 3 && orderInfo.order_status != 4">
|
|
|
|
- 租借周期</view> -->
|
|
|
|
|
|
+ <view v-else>
|
|
|
|
+ 租借周期:{{orderInfo.hire_duration}}{{hireDurationUnitFn(orderInfo.hire_duration_unit)}}</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="money-item">
|
|
|
|
+ <view :class="orderInfo.order_status == 4?'red-status':''">
|
|
|
|
+ {{tools.toFix(orderInfo.hire_money / 100)}}<text>元</text>
|
|
|
|
+ </view>
|
|
|
|
+ <view>订单金额</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view @tap="bindExpanded">
|
|
|
|
+ <text>{{isExpanded?'收起':'展开'}}</text>
|
|
|
|
+ <img
|
|
|
|
+ :src="isExpanded?'https://qiniu.bms16.com/FvRah8ro91B_TUVEmInBq6n69W2f':'https://qiniu.bms16.com/FtbxPP0aXYG8hyJTEJfNTXa_Puuc'" />
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <view v-if="orderInfo.order_type == 3" class="flex-row flex-between">
|
|
|
|
+ <view class="money-item">
|
|
|
|
+ <view></view>
|
|
|
|
+ <view>租借周期:购买</view>
|
|
</view>
|
|
</view>
|
|
<view class="money-item">
|
|
<view class="money-item">
|
|
<view :class="orderInfo.order_status == 4?'red-status':''">
|
|
<view :class="orderInfo.order_status == 4?'red-status':''">
|
|
- {{orderInfo.order_status == 4?tools.toFix(over_fee/100):tools.toFix(orderInfo.hire_money / 100)}}<text>元</text>
|
|
|
|
|
|
+ {{orderInfo.order_status == 4?tools.toFix(over_fee/100):tools.toFix(orderInfo.money / 100)}}<text>元</text>
|
|
</view>
|
|
</view>
|
|
- <view v-if="orderInfo.order_status == 4" class="red-status">逾期金额</view>
|
|
|
|
- <view v-else>订单金额</view>
|
|
|
|
|
|
+ <view>订单金额</view>
|
|
</view>
|
|
</view>
|
|
<view @tap="bindExpanded">
|
|
<view @tap="bindExpanded">
|
|
<text>{{isExpanded?'收起':'展开'}}</text>
|
|
<text>{{isExpanded?'收起':'展开'}}</text>
|
|
@@ -50,55 +75,62 @@
|
|
:src="isExpanded?'https://qiniu.bms16.com/FvRah8ro91B_TUVEmInBq6n69W2f':'https://qiniu.bms16.com/FtbxPP0aXYG8hyJTEJfNTXa_Puuc'" />
|
|
:src="isExpanded?'https://qiniu.bms16.com/FvRah8ro91B_TUVEmInBq6n69W2f':'https://qiniu.bms16.com/FtbxPP0aXYG8hyJTEJfNTXa_Puuc'" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
+
|
|
<view v-if="isExpanded" class="dashed-border"></view>
|
|
<view v-if="isExpanded" class="dashed-border"></view>
|
|
<view v-if="isExpanded">
|
|
<view v-if="isExpanded">
|
|
- <view class="big-text">订单信息</view>
|
|
|
|
- <view class="sn-content flex-row flex-between">
|
|
|
|
- <view class="sn-title">订单编号</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-text">{{tools.formatTime(orderInfo.ctime)}}</view>
|
|
|
|
- </view>
|
|
|
|
- <view class="sn-content flex-row flex-between">
|
|
|
|
- <view class="sn-title">支付时间</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>
|
|
|
|
- <view class="sn-content flex-row flex-between">
|
|
|
|
- <view class="sn-title">租车金额</view>
|
|
|
|
- <view class="sn-text">$ {{tools.toFix(orderInfo.hire_money/1000)}}</view>
|
|
|
|
- </view>
|
|
|
|
- <view class="sn-content flex-row flex-between">
|
|
|
|
- <view class="sn-title">租车押金</view>
|
|
|
|
- <view class="sn-text"><text class="grey-text">订单结束后随时退</text> $ {{tools.toFix(orderInfo.deposit/1000)}}</view>
|
|
|
|
|
|
+ <view class="big-text">订单信息</view>
|
|
|
|
+ <view class="sn-content flex-row flex-between">
|
|
|
|
+ <view class="sn-title">订单编号</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-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-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>
|
|
|
|
+ <view v-if="orderInfo.order_type != 3" class="sn-content flex-row flex-between">
|
|
|
|
+ <view class="sn-title">租车金额</view>
|
|
|
|
+ <view class="sn-text">$ {{tools.toFix(orderInfo.hire_money/1000)}}</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view v-if="orderInfo.order_type != 3" class="sn-content flex-row flex-between">
|
|
|
|
+ <view class="sn-title">租车押金</view>
|
|
|
|
+ <view class="sn-text"><text class="grey-text">订单结束后随时退</text> $
|
|
|
|
+ {{tools.toFix(orderInfo.deposit/1000)}}
|
|
</view>
|
|
</view>
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="car-info">
|
|
<view class="car-info">
|
|
<view class="flex-row flex-between" style="margin-bottom: 40rpx;">
|
|
<view class="flex-row flex-between" style="margin-bottom: 40rpx;">
|
|
<text>自行去门店取还</text>
|
|
<text>自行去门店取还</text>
|
|
- <text class="distance-num">100m</text>
|
|
|
|
|
|
+ <text class="distance-num">{{orderInfo.distance}}m</text>
|
|
</view>
|
|
</view>
|
|
<view class="flex-row store-img-view">
|
|
<view class="flex-row store-img-view">
|
|
<img src="https://qiniu.bms16.com/FrwDlFZdSMiBgqnqDjB19PiDUmuu" alt="">
|
|
<img src="https://qiniu.bms16.com/FrwDlFZdSMiBgqnqDjB19PiDUmuu" alt="">
|
|
<view style="width: 100%;margin-left: 24rpx;">
|
|
<view style="width: 100%;margin-left: 24rpx;">
|
|
- <view class="store-name">小众租车深圳店</view>
|
|
|
|
- <view class="store-name-address">西丽留仙洞留仙村路97号</view>
|
|
|
|
|
|
+ <view class="store-name">{{orderInfo.shop_name}}</view>
|
|
|
|
+ <view class="store-name-address">{{orderInfo.address}}</view>
|
|
<view class="flex-row flex-between align-center">
|
|
<view class="flex-row flex-between align-center">
|
|
<view class="flex-row time-style align-center">
|
|
<view class="flex-row time-style align-center">
|
|
- <img style="width: 40rpx;height: 40rpx;" src="https://qiniu.bms16.com/Fp-G1pdXxnTV-G3qFbgS453AuqcU" alt="">
|
|
|
|
- <text>10:00-22:00</text>
|
|
|
|
|
|
+ <img v-if="orderInfo.work_begin_time && orderInfo.work_end_time"
|
|
|
|
+ style="width: 40rpx;height: 40rpx;"
|
|
|
|
+ src="https://qiniu.bms16.com/Fp-G1pdXxnTV-G3qFbgS453AuqcU" alt="">
|
|
|
|
+ <text
|
|
|
|
+ v-if="orderInfo.work_begin_time && orderInfo.work_end_time">{{orderInfo.work_begin_time}}-{{orderInfo.work_end_time}}</text>
|
|
</view>
|
|
</view>
|
|
- <img style="width: 112rpx;height: 64rpx;" src="https://qiniu.bms16.com/Fts38M35doVjK09GfOza5qD-wwkK" alt="">
|
|
|
|
|
|
+ <img @click="navToCabinet" style="width: 112rpx;height: 64rpx;"
|
|
|
|
+ src="https://qiniu.bms16.com/Fts38M35doVjK09GfOza5qD-wwkK" alt="">
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -107,12 +139,17 @@
|
|
<view>车辆信息</view>
|
|
<view>车辆信息</view>
|
|
<view class="car-top flex-row flex-between">
|
|
<view class="car-top flex-row flex-between">
|
|
<view class="top-flex">
|
|
<view class="top-flex">
|
|
- <view>智能电动摩托车智驾</view>
|
|
|
|
- <view>续航{{orderInfo.endurance}}|重量{{orderInfo.weight}}</view>
|
|
|
|
|
|
+ <view>{{orderInfo.model_name}}</view>
|
|
|
|
+ <view>续航{{orderInfo.endurance /100}}km|重量{{orderInfo.weight}}kg</view>
|
|
</view>
|
|
</view>
|
|
- <img src="https://qiniu.bms16.com/FhEvnKUckAHPtWaC04mi2s53IEVj" alt="">
|
|
|
|
|
|
+ <!-- //配套服务 -->
|
|
|
|
+ <view class="">
|
|
|
|
+ asd
|
|
|
|
+ </view>
|
|
|
|
+ <img v-if="orderInfo.model_images" :src="orderInfo.model_images" alt=""></img>
|
|
|
|
+ <img v-else src="https://qiniu.bms16.com/FhEvnKUckAHPtWaC04mi2s53IEVj" alt="">
|
|
</view>
|
|
</view>
|
|
- <view class="exchange-info">
|
|
|
|
|
|
+ <!-- <view class="exchange-info">
|
|
<view class="flex-row flex-between">
|
|
<view class="flex-row flex-between">
|
|
<view class="exchange-info-title flex-row align-center">
|
|
<view class="exchange-info-title flex-row align-center">
|
|
<img style="width: 40rpx;height: 40rpx;" src="https://qiniu.bms16.com/Fj_ifr41AqH2PijZBdOBa3SCxADg" alt="">
|
|
<img style="width: 40rpx;height: 40rpx;" src="https://qiniu.bms16.com/Fj_ifr41AqH2PijZBdOBa3SCxADg" alt="">
|
|
@@ -124,33 +161,35 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="exchange-content">本单可享3次免费换电数,超出后需单独支付</view>
|
|
<view class="exchange-content">本单可享3次免费换电数,超出后需单独支付</view>
|
|
- <view class="exchange-content">自费换电:S1/次</view>
|
|
|
|
- <!-- <view class="exchange-content">本单您可享受{{orderInfo.gift_exchange_num}}次免费换电,
|
|
|
|
|
|
+ <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' }}次,超出后需要单独支付换电费用
|
|
当前免费换电剩余{{(orderInfo.gift_exchange_num - orderInfo.used_exchange_num) > 0 ? (orderInfo.gift_exchange_num - orderInfo.used_exchange_num) : '0' }}次,超出后需要单独支付换电费用
|
|
</view> -->
|
|
</view> -->
|
|
- </view>
|
|
|
|
|
|
+ <!-- </view> -->
|
|
</view>
|
|
</view>
|
|
-
|
|
|
|
|
|
|
|
<view v-if="orderInfo.hire_begin_time!=0&&orderInfo.hire_end_time!=0" class="return-info">
|
|
<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 class="return-top flex-row flex-between">
|
|
<view>取还时间</view>
|
|
<view>取还时间</view>
|
|
<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>
|
|
|
|
|
|
+ <!-- 共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)}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="return-bottom flex-row">
|
|
<view class="return-bottom flex-row">
|
|
- <view>3.8-20:00</view>
|
|
|
|
|
|
+ <view>{{orderInfo.hire_begin_time}}</view>
|
|
<img src="https://qiniu.bms16.com/FoXmBbj7YGWmjyeuVEY35nzieqnx" />
|
|
<img src="https://qiniu.bms16.com/FoXmBbj7YGWmjyeuVEY35nzieqnx" />
|
|
- <view>3.8-20:00</view>
|
|
|
|
|
|
+ <view>{{orderInfo.hire_end_time}}</view>
|
|
<!-- <view>{{tools.formatTimeDate(orderInfo.hire_begin_time)}}</view>
|
|
<!-- <view>{{tools.formatTimeDate(orderInfo.hire_begin_time)}}</view>
|
|
<img src="https://qiniu.bms16.com/FoXmBbj7YGWmjyeuVEY35nzieqnx" />
|
|
<img src="https://qiniu.bms16.com/FoXmBbj7YGWmjyeuVEY35nzieqnx" />
|
|
<view>{{tools.formatTimeDate(orderInfo.hire_end_time)}}</view> -->
|
|
<view>{{tools.formatTimeDate(orderInfo.hire_end_time)}}</view> -->
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
+
|
|
|
|
+
|
|
<view v-if="orderInfo.order_status==2||orderInfo.order_status==3||orderInfo.order_status==4"
|
|
<view v-if="orderInfo.order_status==2||orderInfo.order_status==3||orderInfo.order_status==4"
|
|
class="overdue-info">
|
|
class="overdue-info">
|
|
<view>逾期规则</view>
|
|
<view>逾期规则</view>
|
|
@@ -168,20 +207,33 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 考虑为空的情况 -->
|
|
<!-- 考虑为空的情况 -->
|
|
|
|
+
|
|
<view class="payment-info flex-row flex-between">
|
|
<view class="payment-info flex-row flex-between">
|
|
|
|
+ <view v-if="(orderInfo.order_status == 1 || orderInfo.pay_status == 5) && orderInfo.pay_type != 1" class="cancel" @tap="clickCancel">结束订单
|
|
|
|
+ </view>
|
|
<view v-if="orderInfo.order_status == 1" class="flex-row"> <!-- 待取车 -->
|
|
<view v-if="orderInfo.order_status == 1" class="flex-row"> <!-- 待取车 -->
|
|
- <view class="cancel" @tap="clickCancel">结束订单</view>
|
|
|
|
- <view @tap="callStorePhone" class="deposit-btn w_224">联系门店</view>
|
|
|
|
- <view @tap="navToScan" class="sesame-btn w_288">扫码绑定</view>
|
|
|
|
|
|
+ <view @tap="callStorePhone" class="deposit-btn ">联系门店</view>
|
|
|
|
+ <view @tap="navToScan" class="sesame-btn ">扫码绑定</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>
|
|
</view>
|
|
- <view v-else-if="orderInfo.order_status == 3||orderInfo.order_status == 4" class="flex-row"> <!-- 使用中 -->
|
|
|
|
|
|
+
|
|
|
|
+ <view v-else-if="(orderInfo.order_status == 3||orderInfo.order_status == 4) && orderInfo.order_type != 3" class="flex-row"> <!-- 使用中 -->
|
|
<view @tap="callStorePhone" class="cancel">联系门店</view>
|
|
<view @tap="callStorePhone" class="cancel">联系门店</view>
|
|
- <view @tap="tapReturnCar" class="deposit-btn w_254">到店还车</view>
|
|
|
|
- <view @tap="bindRenew" class="sesame-btn w_224">续租</view>
|
|
|
|
|
|
+ <view @tap="tapReturnCar" class="deposit-btn">到店还车</view>
|
|
|
|
+ <view @tap="bindRenew" class="sesame-btn">续租</view>
|
|
</view>
|
|
</view>
|
|
- <view v-else-if="orderInfo.order_status == 5||orderInfo.order_status == 6" @tap="callStorePhone" class="pay-btn">
|
|
|
|
|
|
+ <view v-else-if="orderInfo.order_status == 5||orderInfo.order_status == 6" @tap="callStorePhone"
|
|
|
|
+ class="pay-btn">
|
|
联系门店</view> <!-- 待门店确认||还车中,等待门店取车 -->
|
|
联系门店</view> <!-- 待门店确认||还车中,等待门店取车 -->
|
|
- <view v-else-if="orderInfo.order_status == 7" @tap="callStorePhone" class="pay-btn">联系门店</view> <!--车辆已归还 已完成 -->
|
|
|
|
|
|
+ <view v-else-if="orderInfo.order_status == 7" @tap="callStorePhone" class="pay-btn">联系门店</view>
|
|
|
|
+ <!--车辆已归还 已完成 -->
|
|
|
|
+
|
|
|
|
+ <view v-if="orderInfo.order_type == 3 && (orderInfo.order_status == 3||orderInfo.order_status == 4)" @tap="callStorePhone" class="pay-btn">联系门店</view>
|
|
|
|
+
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<view v-if="isShowCancel" class="cancel-b">
|
|
<view v-if="isShowCancel" class="cancel-b">
|
|
@@ -190,52 +242,74 @@
|
|
<view>选择取消原因</view>
|
|
<view>选择取消原因</view>
|
|
<view @tap="isShowCancel = false" style="font-size: 60rpx;">×</view>
|
|
<view @tap="isShowCancel = false" style="font-size: 60rpx;">×</view>
|
|
</view>
|
|
</view>
|
|
- <view @tap="bindCancel" data-status="1" class="cancel-item flex-row flex-between">
|
|
|
|
|
|
+ <view @click="reason = '行程变更无需用车'" class="cancel-item flex-row flex-between">
|
|
<view>行程变更无需用车</view>
|
|
<view>行程变更无需用车</view>
|
|
<img
|
|
<img
|
|
- :src="reason == 1?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
|
|
|
|
|
|
+ :src="reason == '行程变更无需用车'?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
|
|
</view>
|
|
</view>
|
|
- <view @tap="bindCancel" data-status="2" class="cancel-item flex-row flex-between">
|
|
|
|
|
|
+ <view @click="reason = '修改订单信息'" class="cancel-item flex-row flex-between">
|
|
<view>修改订单信息</view>
|
|
<view>修改订单信息</view>
|
|
<img
|
|
<img
|
|
- :src="reason == 2?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
|
|
|
|
|
|
+ :src="reason == '修改订单信息'?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
|
|
</view>
|
|
</view>
|
|
- <view @tap="bindCancel" data-status="3" class="cancel-item flex-row flex-between">
|
|
|
|
|
|
+ <view @click="reason = '不想要了'" class="cancel-item flex-row flex-between">
|
|
<view>不想要了</view>
|
|
<view>不想要了</view>
|
|
<img
|
|
<img
|
|
- :src="reason == 3?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
|
|
|
|
|
|
+ :src="reason == '不想要了'?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
|
|
</view>
|
|
</view>
|
|
|
|
+ <view @click="bindCancel" class="cancel_btn">确认取消</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- <returnCar :isShowReturnCar="isShowReturnCar" @closeShowReturnCarBtn="()=>isShowReturnCar=false" @navStoreBtn="navStoreBtn" @immediatelyReturnBtn="immediatelyReturnBtn"/>
|
|
|
|
- <PayTypeModel @closeShow="()=>isShowToBuy=false" @payToOrder="payToOrder" :free_price="totalPrice" :isShowToBuy="isShowToBuy"/>
|
|
|
|
|
|
+
|
|
|
|
+ <returnCar :isShowReturnCar="isShowReturnCar" @closeShowReturnCarBtn="()=>isShowReturnCar=false"
|
|
|
|
+ @navStoreBtn="navStoreBtn" @immediatelyReturnBtn="immediatelyReturnBtn" />
|
|
|
|
+
|
|
|
|
+ <carPlan @payToOrder='payReturn' v-if="showCarPlan" @changeSelectType="changeSelectType"
|
|
|
|
+ @closeShowMore="showCarPlan = false" :params="params" :selectType="selectType" />
|
|
|
|
+
|
|
|
|
+ <PayTypeModel @closeShow="()=>isShowToBuy=false" @payToOrder="payToOrder" :free_price="totalPrice"
|
|
|
|
+ :isShowToBuy="isShowToBuy" />
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
<script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
|
|
<script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
|
|
<script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
|
|
<script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
|
|
<script>
|
|
<script>
|
|
|
|
+ var config_gyq = require('../../common/config_gyq.js');
|
|
var config = require('../../common/config.js');
|
|
var config = require('../../common/config.js');
|
|
|
|
+ var request = require('../../common/request');
|
|
var common = require('../../common/common.js');
|
|
var common = require('../../common/common.js');
|
|
var http = require('../../common/http.js');
|
|
var http = require('../../common/http.js');
|
|
var storage = require('../../common/storage.js');
|
|
var storage = require('../../common/storage.js');
|
|
var user = require('../../common/user.js');
|
|
var user = require('../../common/user.js');
|
|
|
|
+ //
|
|
|
|
+ import {
|
|
|
|
+ getRemainingTime
|
|
|
|
+ } from '@/utils/util';
|
|
var appWhiteListFilter = require('../../common/appWhiteListFilter.js');
|
|
var appWhiteListFilter = require('../../common/appWhiteListFilter.js');
|
|
import allPrice from '@/component/allPrice/allPrice';
|
|
import allPrice from '@/component/allPrice/allPrice';
|
|
import ReturnCar from '@/component/returnCar/returnCar';
|
|
import ReturnCar from '@/component/returnCar/returnCar';
|
|
|
|
+ import carPlan from '@/component/carPlan/carPlan';
|
|
import PayTypeModel from '@/component/payTypeModel/payTypeModel';
|
|
import PayTypeModel from '@/component/payTypeModel/payTypeModel';
|
|
|
|
+ import dayjs from 'dayjs'
|
|
|
|
+ import duration from 'dayjs/plugin/duration'
|
|
|
|
+ dayjs.extend(duration);
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
allPrice,
|
|
allPrice,
|
|
ReturnCar,
|
|
ReturnCar,
|
|
- PayTypeModel
|
|
|
|
|
|
+ PayTypeModel,
|
|
|
|
+ carPlan
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ select_type: '',
|
|
|
|
+ car_detail: {},
|
|
|
|
+ showCarPlan: false,
|
|
return_imgs: {},
|
|
return_imgs: {},
|
|
charge_standard: {},
|
|
charge_standard: {},
|
|
isShowCancel: false,
|
|
isShowCancel: false,
|
|
order_sn: '',
|
|
order_sn: '',
|
|
- reason: 0,
|
|
|
|
|
|
+ reason: '行程变更无需用车',
|
|
orderInfo: {},
|
|
orderInfo: {},
|
|
shop_image: [],
|
|
shop_image: [],
|
|
isExpanded: false,
|
|
isExpanded: false,
|
|
@@ -244,15 +318,15 @@
|
|
isSelectStatus: 1,
|
|
isSelectStatus: 1,
|
|
price_list: [], //车辆价格 hire_duration_unit 1 日 4 小时 6 周
|
|
price_list: [], //车辆价格 hire_duration_unit 1 日 4 小时 6 周
|
|
insurance_status: 0,
|
|
insurance_status: 0,
|
|
- over_fee:0,//逾期金额
|
|
|
|
|
|
+ over_fee: 0, //逾期金额
|
|
plate_number: '',
|
|
plate_number: '',
|
|
isScanCondeRentalCar: '',
|
|
isScanCondeRentalCar: '',
|
|
- isShowReturnCar:false,
|
|
|
|
- isShowToBuy:false,
|
|
|
|
- totalPrice:0, //逾期支付金额
|
|
|
|
|
|
+ isShowReturnCar: false,
|
|
|
|
+ isShowToBuy: false,
|
|
|
|
+ totalPrice: 0, //逾期支付金额
|
|
};
|
|
};
|
|
},
|
|
},
|
|
-
|
|
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 生命周期函数--监听页面加载
|
|
* 生命周期函数--监听页面加载
|
|
*/
|
|
*/
|
|
@@ -263,33 +337,160 @@
|
|
/**
|
|
/**
|
|
* 生命周期函数--监听页面显示
|
|
* 生命周期函数--监听页面显示
|
|
*/
|
|
*/
|
|
- onShow: function() {
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
- onUnload: function () {
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
|
|
+ onShow: function() {},
|
|
|
|
+
|
|
|
|
+ onUnload: function() {},
|
|
|
|
+
|
|
computed: {},
|
|
computed: {},
|
|
|
|
|
|
methods: {
|
|
methods: {
|
|
- bindOrderInfo() {
|
|
|
|
|
|
+
|
|
|
|
+ async loadCarInfo(model_id) {
|
|
|
|
+ const me = this
|
|
|
|
+ http.postApi(config.API_FLK_INDEX_CAR_MODEL_DETAIL, {
|
|
|
|
+ model_id,
|
|
|
|
+ }, (resp) => {
|
|
|
|
+ if (resp.data.code === 200) {
|
|
|
|
+ const pData = {
|
|
|
|
+ ...this.car_detail,
|
|
|
|
+ price: this.price
|
|
|
|
+ }
|
|
|
|
+ me.setData({
|
|
|
|
+ car_detail: resp.data.data,
|
|
|
|
+ params: {
|
|
|
|
+ order_sn: this.orderInfo.order_sn,
|
|
|
|
+ ...resp.data.data,
|
|
|
|
+ price: (resp.data.data.rental_setting[0].hire_price / 100).toFixed(2)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ console.log('车辆信息')
|
|
|
|
+ console.log(resp.data.data)
|
|
|
|
+ } else {
|
|
|
|
+ common.simpleToast(resp.data.msg);
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ changeSelectType(select_type, price) {
|
|
|
|
+ this.setData({
|
|
|
|
+ selectType: select_type,
|
|
|
|
+ price: (price / 100).toFixed(2)
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ async navToScan() {
|
|
|
|
+ let car_sn = this.orderInfo.car_sn || ''
|
|
|
|
+ if (!car_sn) {
|
|
|
|
+ let res = await uni.scanCode({
|
|
|
|
+ onlyFromCamera: true,
|
|
|
|
+ scanType: [],
|
|
|
|
+ });
|
|
|
|
+ if (res[0]) return
|
|
|
|
+ car_sn = res[1].result
|
|
|
|
+ }
|
|
|
|
+ uni.navigateTo({
|
|
|
|
+ url: `/pages/activation/activation?model_id=${this.orderInfo.model_id}&sub_sn=${this.sub_sn}&car_sn=${car_sn}`
|
|
|
|
+ })
|
|
|
|
+ // let {data} = await request.postApi(config.API_CAR_ASSIGNMENT,{sub_sn:this.sub_sn,car_sn:res[1].result})
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ navToCabinet() {
|
|
|
|
+ const {
|
|
|
|
+ latitude,
|
|
|
|
+ longitude,
|
|
|
|
+ cityname,
|
|
|
|
+ address,
|
|
|
|
+ shop_name
|
|
|
|
+ } = this.orderInfo
|
|
|
|
+ uni.openLocation({
|
|
|
|
+ latitude: latitude - 0,
|
|
|
|
+ longitude: longitude - 0,
|
|
|
|
+ scale: 15,
|
|
|
|
+ name: shop_name,
|
|
|
|
+ address: address,
|
|
|
|
+ success: function(res) {}
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ hireDurationUnitFn(type) {
|
|
|
|
+ if (type == 1) {
|
|
|
|
+ return '天'
|
|
|
|
+ } else if (type == 2) {
|
|
|
|
+ return '月'
|
|
|
|
+ } else if (type == 3) {
|
|
|
|
+ return '年'
|
|
|
|
+ } else if (type == 4) {
|
|
|
|
+ return '小时'
|
|
|
|
+ } else if (type == 5) {
|
|
|
|
+ return '分钟'
|
|
|
|
+ } else if (type == 6) {
|
|
|
|
+ return '周'
|
|
|
|
+ } else if (type == 7) {
|
|
|
|
+ return '季'
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ hireDurationUnitsFn(time, type) {
|
|
|
|
+
|
|
|
|
+ if (type == 1) {
|
|
|
|
+ return Math.ceil(time / 60 / 60 / 24) + '天'
|
|
|
|
+ } else if (type == 2) {
|
|
|
|
+ return Math.ceil(time / 60 / 60 / 24 / 30) + '月'
|
|
|
|
+ } else if (type == 3) {
|
|
|
|
+ return Math.ceil(time / 60 / 60 / 24 / 30 / 365) + '年'
|
|
|
|
+ } else if (type == 4) {
|
|
|
|
+ return Math.ceil(time / 60 / 60) + '小时'
|
|
|
|
+ } else if (type == 5) {
|
|
|
|
+ return Math.ceil(time / 60) + '分钟'
|
|
|
|
+ } else if (type == 6) {
|
|
|
|
+ return Math.ceil(time / 60 / 60 / 24 / 7) + '周'
|
|
|
|
+ } else if (type == 7) {
|
|
|
|
+ return Math.ceil(time / 60 / 60 / 24 / 30 / 3) + '季'
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ async bindOrderInfo() {
|
|
|
|
+ let res = await uni.getLocation()
|
|
const me = this
|
|
const me = this
|
|
http.postApi(config.API_FLK_ORDER_INFO, {
|
|
http.postApi(config.API_FLK_ORDER_INFO, {
|
|
sub_sn: me.sub_sn,
|
|
sub_sn: me.sub_sn,
|
|
|
|
+ latitude: res[1].latitude,
|
|
|
|
+ longitude: res[1].longitude,
|
|
}, (resp) => {
|
|
}, (resp) => {
|
|
if (resp.data.code === 200) {
|
|
if (resp.data.code === 200) {
|
|
me.orderInfo = resp.data.data.order_info
|
|
me.orderInfo = resp.data.data.order_info
|
|
|
|
+ //
|
|
|
|
+ if (resp.data.data.order_info.model_id) {
|
|
|
|
+ me.loadCarInfo(resp.data.data.order_info.model_id)
|
|
|
|
+ }
|
|
|
|
+ let distance = common.getFlatternDistance(res[1].longitude, res[1].latitude, me
|
|
|
|
+ .orderInfo.longitude, me.orderInfo.latitude)
|
|
|
|
+ resp.data.data.order_info.distance = distance
|
|
// 取还时间展示
|
|
// 取还时间展示
|
|
- me.orderInfo.hire_return_time = common.getTimeToDay(Math.ceil(me.orderInfo.hire_end_time - me.orderInfo.hire_begin_time)/60)
|
|
|
|
|
|
+ // me.orderInfo.hire_return_time = common.getTimeToDay(Math.ceil(me.orderInfo
|
|
|
|
+ // .hire_end_time - me.orderInfo.hire_begin_time) / 60)
|
|
|
|
+
|
|
|
|
+ me.orderInfo.hire_return_time = getRemainingTime(me.orderInfo.hire_begin_time, me
|
|
|
|
+ .orderInfo.hire_end_time)
|
|
|
|
+ me.orderInfo.hire_begin_time = me.orderInfo.hire_begin_time ? dayjs(me.orderInfo
|
|
|
|
+ .hire_begin_time * 1000).format(
|
|
|
|
+ 'YY-MM-DD') : 0
|
|
|
|
+ me.orderInfo.hire_end_time = me.orderInfo.hire_end_time ? dayjs(me.orderInfo
|
|
|
|
+ .hire_end_time * 1000).format(
|
|
|
|
+ 'YY-MM-DD') : 0
|
|
|
|
+
|
|
// 剩余租期判断
|
|
// 剩余租期判断
|
|
- if((me.orderInfo.hire_type==2&&me.orderInfo.order_status==2)||me.orderInfo.order_status==3){
|
|
|
|
- me.orderInfo.hire_duration_time = common.getTimeToDay(Math.ceil(me.orderInfo.hire_end_time-(Math.floor(new Date()) / 1000))/60)
|
|
|
|
- }else{
|
|
|
|
- if(me.orderInfo.order_status==4){
|
|
|
|
- me.orderInfo.hire_duration_time = common.getTimeToDay(Math.ceil(Math.floor(new Date()) / 1000-me.orderInfo.hire_end_time)/60)
|
|
|
|
- }else{
|
|
|
|
|
|
+ if ((me.orderInfo.hire_type == 2 && me.orderInfo.order_status == 2) || me
|
|
|
|
+ .orderInfo.order_status == 3) {
|
|
|
|
+ me.orderInfo.hire_duration_time = common.getTimeToDay(Math.ceil(me
|
|
|
|
+ .orderInfo.hire_end_time - (Math.floor(new Date()) / 1000)) /
|
|
|
|
+ 60)
|
|
|
|
+ } else {
|
|
|
|
+ if (me.orderInfo.order_status == 4) {
|
|
|
|
+ me.orderInfo.hire_duration_time = common.getTimeToDay(Math.ceil(Math
|
|
|
|
+ .floor(new Date()) / 1000 - me.orderInfo.hire_end_time) /
|
|
|
|
+ 60)
|
|
|
|
+ } else {
|
|
me.orderInfo.hire_duration_time = me.orderInfo.hire_return_time
|
|
me.orderInfo.hire_duration_time = me.orderInfo.hire_return_time
|
|
- }
|
|
|
|
|
|
+ }
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
// 默认返回上一个页面再提示报错
|
|
// 默认返回上一个页面再提示报错
|
|
@@ -300,7 +501,7 @@
|
|
}
|
|
}
|
|
})
|
|
})
|
|
},
|
|
},
|
|
- navStoreBtn(){
|
|
|
|
|
|
+ navStoreBtn() {
|
|
const {
|
|
const {
|
|
latitude,
|
|
latitude,
|
|
longitude,
|
|
longitude,
|
|
@@ -316,72 +517,91 @@
|
|
success: function(res) {}
|
|
success: function(res) {}
|
|
});
|
|
});
|
|
},
|
|
},
|
|
- tapReturnCar(){
|
|
|
|
|
|
+ tapReturnCar() {
|
|
this.setData({
|
|
this.setData({
|
|
- isShowReturnCar:true
|
|
|
|
|
|
+ isShowReturnCar: true
|
|
})
|
|
})
|
|
},
|
|
},
|
|
- immediatelyReturnBtn(){
|
|
|
|
|
|
+ immediatelyReturnBtn() {
|
|
//到店还车 判断逾期状态 如果逾期要交逾期费用 跳转到上传车辆图片再支付逾期费用还车
|
|
//到店还车 判断逾期状态 如果逾期要交逾期费用 跳转到上传车辆图片再支付逾期费用还车
|
|
- const isOverdue=this.orderInfo.order_status==4
|
|
|
|
- const {car_sn,shop_id,overdue_money}=this.orderInfo
|
|
|
|
- const returnCarParams={car_sn,shop_id,overdue_money,isReturnCar:true,}
|
|
|
|
- if(isOverdue){
|
|
|
|
|
|
+ const isOverdue = this.orderInfo.order_status == 4
|
|
|
|
+ const {
|
|
|
|
+ car_sn,
|
|
|
|
+ shop_id,
|
|
|
|
+ overdue_money
|
|
|
|
+ } = this.orderInfo
|
|
|
|
+ const returnCarParams = {
|
|
|
|
+ car_sn,
|
|
|
|
+ shop_id,
|
|
|
|
+ overdue_money,
|
|
|
|
+ isReturnCar: true,
|
|
|
|
+ }
|
|
|
|
+ if (isOverdue) {
|
|
this.setData({
|
|
this.setData({
|
|
- totalPrice:overdue_money,
|
|
|
|
- isShowToBuy:true
|
|
|
|
|
|
+ totalPrice: overdue_money,
|
|
|
|
+ isShowToBuy: true
|
|
})
|
|
})
|
|
- }else{
|
|
|
|
|
|
+ } else {
|
|
//提交还车图片
|
|
//提交还车图片
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url: '/pages/activation/activation?isReturnCar=' + true +'&car_sn='+car_sn +'&shop_id=' + shop_id,
|
|
|
|
|
|
+ url: `/pages/activation/activation?isReturnCar=true,model_id=${this.orderInfo.model_id}&sub_sn=${this.sub_sn}&car_sn=${this.orderInfo.car_sn}`
|
|
});
|
|
});
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
},
|
|
},
|
|
- callStorePhone(){
|
|
|
|
- const phone =this.orderInfo.link_phone
|
|
|
|
- common.callPhone(this,phone)
|
|
|
|
|
|
+ callStorePhone() {
|
|
|
|
+ const phone = this.orderInfo.link_phone
|
|
|
|
+ common.callPhone(phone)
|
|
},
|
|
},
|
|
- clickCancel() {
|
|
|
|
|
|
+ async clickCancel() {
|
|
|
|
+ this.isShowCancel = true
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ async bindCancel() {
|
|
|
|
+ // const me = this
|
|
|
|
+ // me.reason = e.currentTarget.dataset.status;
|
|
|
|
+ // me.cancel = true
|
|
|
|
+ // common.loading()
|
|
|
|
+ // setTimeout(function() {
|
|
|
|
+ // http.postApi(config.API_DAYHIRE_HIRE_CANCEL_ORDER, {
|
|
|
|
+ // order_sn: me.order_sn
|
|
|
|
+ // }, (resp) => {
|
|
|
|
+ // if (resp.data.code === 200) {
|
|
|
|
+ // uni.hideLoading()
|
|
|
|
+ // common.simpleToast('取消成功')
|
|
|
|
+ // setTimeout(() => {
|
|
|
|
+ // me.bindOrderInfo()
|
|
|
|
+ // }, 500);
|
|
|
|
+ // } else {
|
|
|
|
+ // common.simpleToast('订单取消失败')
|
|
|
|
+ // }
|
|
|
|
+ // me.reason = 0
|
|
|
|
+ // me.isShowCancel = false
|
|
|
|
+ // })
|
|
|
|
+ // }, 600);
|
|
const me = this
|
|
const me = this
|
|
- uni.showModal({
|
|
|
|
|
|
+ let res = await uni.showModal({
|
|
title: '取消订单',
|
|
title: '取消订单',
|
|
content: '您是否需要取消该订单',
|
|
content: '您是否需要取消该订单',
|
|
confirmText: '是',
|
|
confirmText: '是',
|
|
confirmColor: '#0074FF',
|
|
confirmColor: '#0074FF',
|
|
cancelText: '否',
|
|
cancelText: '否',
|
|
cancelColor: '#191D23',
|
|
cancelColor: '#191D23',
|
|
- success: function(res) {
|
|
|
|
- if (res.confirm) {
|
|
|
|
- me.isShowCancel = true
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
});
|
|
});
|
|
- },
|
|
|
|
-
|
|
|
|
- bindCancel(e) {
|
|
|
|
- const me = this
|
|
|
|
- me.reason = e.currentTarget.dataset.status;
|
|
|
|
- me.cancel = true
|
|
|
|
- common.loading()
|
|
|
|
- setTimeout(function() {
|
|
|
|
- http.postApi(config.API_DAYHIRE_HIRE_CANCEL_ORDER, {
|
|
|
|
- order_sn: me.order_sn
|
|
|
|
- }, (resp) => {
|
|
|
|
- if (resp.data.code === 200) {
|
|
|
|
- uni.hideLoading()
|
|
|
|
- common.simpleToast('取消成功')
|
|
|
|
- setTimeout(()=> {
|
|
|
|
- me.bindOrderInfo()
|
|
|
|
- }, 500);
|
|
|
|
- } else{
|
|
|
|
- common.simpleToast('订单取消失败')
|
|
|
|
- }
|
|
|
|
- me.reason = 0
|
|
|
|
- me.isShowCancel = false
|
|
|
|
|
|
+ if (res[1].confirm) {
|
|
|
|
+ let {
|
|
|
|
+ data
|
|
|
|
+ } = await request.postApi(config.API_DAYHIRE_HIRE_CANCEL_ORDER, {
|
|
|
|
+ sub_sn: this.sub_sn,
|
|
|
|
+ remark:this.reason
|
|
})
|
|
})
|
|
- }, 600);
|
|
|
|
|
|
+ if (data.code == 200) {
|
|
|
|
+ common.simpleToast(data.msg)
|
|
|
|
+ this.bindOrderInfo()
|
|
|
|
+ } else {
|
|
|
|
+ common.simpleToast(data.msg)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
},
|
|
},
|
|
|
|
|
|
bindToNav() {
|
|
bindToNav() {
|
|
@@ -431,16 +651,18 @@
|
|
},
|
|
},
|
|
|
|
|
|
bindRenew() {
|
|
bindRenew() {
|
|
- this.isReturnHome = false
|
|
|
|
- let isRenew = true
|
|
|
|
- uni.navigateTo({
|
|
|
|
- url: '/pages/carIntroduce/carIntroduce?plate_number=' + this.orderInfo.license_plate_number +
|
|
|
|
- '&isRenew=' + isRenew +
|
|
|
|
- '&order_sn=' + this.order_sn,
|
|
|
|
- success: function(res) {},
|
|
|
|
- fail: function(res) {},
|
|
|
|
- complete: function(res) {}
|
|
|
|
- });
|
|
|
|
|
|
+ this.showCarPlan = true
|
|
|
|
+ // this.isReturnHome = false
|
|
|
|
+ // let isRenew = true
|
|
|
|
+ // uni.navigateTo({
|
|
|
|
+ // url: '/pages/carIntroduce/carIntroduce?plate_number=' + this.orderInfo
|
|
|
|
+ // .license_plate_number +
|
|
|
|
+ // '&isRenew=' + isRenew +
|
|
|
|
+ // '&order_sn=' + this.order_sn,
|
|
|
|
+ // success: function(res) {},
|
|
|
|
+ // fail: function(res) {},
|
|
|
|
+ // complete: function(res) {}
|
|
|
|
+ // });
|
|
},
|
|
},
|
|
|
|
|
|
bindBattery() {
|
|
bindBattery() {
|
|
@@ -460,7 +682,8 @@
|
|
navToInput() {
|
|
navToInput() {
|
|
this.isReturnHome = false
|
|
this.isReturnHome = false
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url: '/pages/inputLicensePlate/inputLicensePlate?order_sn=' + this.orderInfo.order_sn,
|
|
|
|
|
|
+ url: '/pages/inputLicensePlate/inputLicensePlate?order_sn=' + this.orderInfo
|
|
|
|
+ .order_sn,
|
|
success: function(res) {},
|
|
success: function(res) {},
|
|
fail: function(res) {},
|
|
fail: function(res) {},
|
|
complete: function(res) {}
|
|
complete: function(res) {}
|
|
@@ -471,36 +694,38 @@
|
|
navToActive() {
|
|
navToActive() {
|
|
this.isReturnHome = false
|
|
this.isReturnHome = false
|
|
const me = this
|
|
const me = this
|
|
- if (this.orderInfo.hire_type == 1) { // 预约
|
|
|
|
- if(me.isScanCondeRentalCar) {
|
|
|
|
|
|
+ if (this.orderInfo.hire_type == 1) { // 预约
|
|
|
|
+ if (me.isScanCondeRentalCar) {
|
|
uni.scanCode({
|
|
uni.scanCode({
|
|
onlyFromCamera: true,
|
|
onlyFromCamera: true,
|
|
- success: function (res) {
|
|
|
|
|
|
+ success: function(res) {
|
|
me.loadScanCode(res.result)
|
|
me.loadScanCode(res.result)
|
|
},
|
|
},
|
|
- fail: function (res) { },
|
|
|
|
- complete: function (res) { },
|
|
|
|
|
|
+ fail: function(res) {},
|
|
|
|
+ complete: function(res) {},
|
|
})
|
|
})
|
|
} else {
|
|
} else {
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url: '/pages/inputLicensePlate/inputLicensePlate?order_sn=' + this.order_sn +'&order_model_id='+this.orderInfo.model_id,
|
|
|
|
|
|
+ url: '/pages/inputLicensePlate/inputLicensePlate?order_sn=' + this
|
|
|
|
+ .order_sn + '&order_model_id=' + this.orderInfo.model_id,
|
|
success: function(res) {},
|
|
success: function(res) {},
|
|
fail: function(res) {},
|
|
fail: function(res) {},
|
|
complete: function(res) {}
|
|
complete: function(res) {}
|
|
});
|
|
});
|
|
}
|
|
}
|
|
- } else { // 非预约
|
|
|
|
|
|
+ } else { // 非预约
|
|
const isJumpReturn = false
|
|
const isJumpReturn = false
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url: '/pages/activation/activation?order_sn=' + this.order_sn + '&plate_number=' + this
|
|
|
|
- .orderInfo.license_plate_number +'&isJumpReturn=' + isJumpReturn,
|
|
|
|
|
|
+ url: '/pages/activation/activation?order_sn=' + this.order_sn +
|
|
|
|
+ '&plate_number=' + this
|
|
|
|
+ .orderInfo.license_plate_number + '&isJumpReturn=' + isJumpReturn,
|
|
success: function(res) {},
|
|
success: function(res) {},
|
|
fail: function(res) {},
|
|
fail: function(res) {},
|
|
complete: function(res) {}
|
|
complete: function(res) {}
|
|
});
|
|
});
|
|
}
|
|
}
|
|
},
|
|
},
|
|
-
|
|
|
|
|
|
+
|
|
loadScanCode(battery_sn) {
|
|
loadScanCode(battery_sn) {
|
|
const pData = {
|
|
const pData = {
|
|
longitude: this.longitude,
|
|
longitude: this.longitude,
|
|
@@ -512,7 +737,8 @@
|
|
uni.hideLoading()
|
|
uni.hideLoading()
|
|
if (resp.data.code === 200) {
|
|
if (resp.data.code === 200) {
|
|
const timestamp = Date.now(); // 获取当前时间戳(毫秒)
|
|
const timestamp = Date.now(); // 获取当前时间戳(毫秒)
|
|
- const isOffline = (Math.floor(timestamp / 1000) - resp.data.data.last_comm_time) > 1800
|
|
|
|
|
|
+ const isOffline = (Math.floor(timestamp / 1000) - resp.data.data
|
|
|
|
+ .last_comm_time) > 1800
|
|
me.plate_number = resp.data.data.license_plate_number
|
|
me.plate_number = resp.data.data.license_plate_number
|
|
if (resp.data.data.last_comm_time === 0 || isOffline) {
|
|
if (resp.data.data.last_comm_time === 0 || isOffline) {
|
|
common.simpleToast('此车辆已离线,请选择其他车辆')
|
|
common.simpleToast('此车辆已离线,请选择其他车辆')
|
|
@@ -543,26 +769,29 @@
|
|
common.simpleToast('此车辆正在被使用')
|
|
common.simpleToast('此车辆正在被使用')
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
- if (me.order_sn&&me.order_sn != '') {
|
|
|
|
|
|
+ if (me.order_sn && me.order_sn != '') {
|
|
if (this.orderInfo.model_id != model_id) { // 预租车型与之前预约车型不一致
|
|
if (this.orderInfo.model_id != model_id) { // 预租车型与之前预约车型不一致
|
|
common.simpleToast('与预约车型不符')
|
|
common.simpleToast('与预约车型不符')
|
|
} else {
|
|
} else {
|
|
this.isReturnHome = false
|
|
this.isReturnHome = false
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url: '/pages/activation/activation?plate_number=' +
|
|
|
|
- this.plate_number + '&order_sn=' + this.order_sn +
|
|
|
|
|
|
+ url: '/pages/activation/activation?plate_number=' +
|
|
|
|
+ this.plate_number + '&order_sn=' + this
|
|
|
|
+ .order_sn +
|
|
'&car_model=' + car_model + '&model_image=' +
|
|
'&car_model=' + car_model + '&model_image=' +
|
|
- model_images[0] + '&return_imgs=' + JSON.stringify(
|
|
|
|
|
|
+ model_images[0] + '&return_imgs=' + JSON
|
|
|
|
+ .stringify(
|
|
return_imgs),
|
|
return_imgs),
|
|
fail() {}
|
|
fail() {}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
} else {
|
|
} else {
|
|
this.isReturnHome = false
|
|
this.isReturnHome = false
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
url: '/pages/carIntroduce/carIntroduce?carInfo=' +
|
|
url: '/pages/carIntroduce/carIntroduce?carInfo=' +
|
|
- encodeURIComponent(carInfo) + '&plate_number=' + this.plate_number,
|
|
|
|
|
|
+ encodeURIComponent(carInfo) + '&plate_number=' +
|
|
|
|
+ this.plate_number,
|
|
fail() {}
|
|
fail() {}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
@@ -637,7 +866,8 @@
|
|
// actual_start_mil:实际距离单位米
|
|
// actual_start_mil:实际距离单位米
|
|
// over_start_price:向上取整的公里数*超出首公里的费用
|
|
// over_start_price:向上取整的公里数*超出首公里的费用
|
|
var actual_start_mil = distance - charge_list.start_mil
|
|
var actual_start_mil = distance - charge_list.start_mil
|
|
- var over_start_price = (Math.ceil(actual_start_mil / charge_list.step_mil)) * charge_list.step_price
|
|
|
|
|
|
+ var over_start_price = (Math.ceil(actual_start_mil / charge_list.step_mil)) * charge_list
|
|
|
|
+ .step_price
|
|
fare = (charge_list.start_price + over_start_price) / 100
|
|
fare = (charge_list.start_price + over_start_price) / 100
|
|
}
|
|
}
|
|
const fareArray = fare.toFixed(2).split('.'); //将价格拆分为整数部分和小数部分
|
|
const fareArray = fare.toFixed(2).split('.'); //将价格拆分为整数部分和小数部分
|
|
@@ -698,11 +928,11 @@
|
|
loadEnd() {
|
|
loadEnd() {
|
|
this.bindOrderInfo()
|
|
this.bindOrderInfo()
|
|
},
|
|
},
|
|
- navToExchange(){
|
|
|
|
|
|
+ navToExchange() {
|
|
console.log('跳转换电记录');
|
|
console.log('跳转换电记录');
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url: '/pages/exchangeRecord/exchangeRecord'+
|
|
|
|
- '?order_sn=' + this.orderInfo.order_sn
|
|
|
|
|
|
+ url: '/pages/exchangeRecord/exchangeRecord' +
|
|
|
|
+ '?order_sn=' + this.orderInfo.order_sn
|
|
})
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -711,4 +941,17 @@
|
|
|
|
|
|
<style>
|
|
<style>
|
|
@import './orderStatus.css';
|
|
@import './orderStatus.css';
|
|
|
|
+ .cancel_btn{
|
|
|
|
+ width: 702rpx;
|
|
|
|
+ height: 80rpx;
|
|
|
|
+ background: #060809;
|
|
|
|
+ border-radius: 40rpx;
|
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
|
+ font-weight: 500;
|
|
|
|
+ font-size: 32rpx;
|
|
|
|
+ color: #FFFFFF;
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ }
|
|
</style>
|
|
</style>
|