orderStatus.vue 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028
  1. <template>
  2. <view class="container-view">
  3. <view class="time-info">
  4. <navBar bgColor="transparent" left="0"></navBar>
  5. <view>
  6. <view v-if="orderInfo.pay_status!=2">
  7. <view class="get-time-view flex-row" v-if="orderInfo.pay_status == 0">待支付</view>
  8. <view class="get-time-view flex-row" v-else-if="orderInfo.pay_status == 1">支付中</view>
  9. <view class="get-time-view flex-row" v-else-if="orderInfo.pay_status == 3">支付失败</view>
  10. <view class="get-time-view flex-row" v-else-if="orderInfo.pay_status == 4">支付取消</view>
  11. <view class="get-time-view flex-row" v-else-if="orderInfo.pay_status == 5">线下待审核</view>
  12. <view class="get-time-view flex-row" v-else-if="orderInfo.pay_status == 6">线下审核拒绝</view>
  13. </view>
  14. <block v-if="orderInfo.pay_status == 2">
  15. <view :class="['get-time-view', 'flex-row', 'blue-text']" v-if="orderInfo.order_status == 3">使用中...</view>
  16. <view :class="['get-time-view', 'flex-row', 'red-text']" v-if="orderInfo.order_status == 4">已逾期</view>
  17. <view class="get-time-view flex-row" v-if="orderInfo.order_status == 2">请上传车辆图片激活车辆</view>
  18. <view class="get-time-view flex-row" v-if="orderInfo.order_status == 5">待门店确认</view>
  19. <view class="get-time-view flex-row" v-if="orderInfo.order_status == 6">还车中,等待门店取车</view>
  20. <view class="get-time-view flex-row" v-if="orderInfo.order_status == 7">已完成</view>
  21. <view class="get-time-view flex-row" v-if="orderInfo.order_status == 8||orderInfo.order_status == 9">已取消</view>
  22. <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></view>
  23. <view v-if="orderInfo.order_status == 10">已完结</view>
  24. </block>
  25. </view>
  26. <view class="time-money">
  27. <view v-if="orderInfo.order_type != 3" class="flex-row flex-between">
  28. <view class="money-item">
  29. <view :class="orderInfo.order_status == 4?'red-status':''">
  30. <block v-if="orderInfo.hire_duration_time">{{orderInfo.hire_duration_time}}</block>
  31. </view>
  32. <view>{{((orderInfo.order_status == 2&&orderInfo.hire_type==2) || orderInfo.order_status == 3)?'租期剩余':(orderInfo.order_status == 4 ? '逾期时长':'租借周期')}}·<text style="opacity: 0.4;">天</text></view>
  33. <!-- <view v-if="(orderInfo.order_status == 2&&orderInfo.hire_type==2) || orderInfo.order_status == 3">
  34. 租期剩余·天</view>
  35. <view v-else-if="orderInfo.order_status == 4 " class="red-status">逾期时长·天</view>
  36. <view v-else>租借周期·天</view> -->
  37. </view>
  38. <view v-if="orderInfo.order_status != 4" class="money-item">
  39. <view>
  40. {{tools.toFix(orderInfo.hire_money / 100)}}
  41. </view>
  42. <view>订单金额<text style="opacity: 0.4;">·$</text></view>
  43. </view>
  44. <view v-if="orderInfo.order_status == 4" class="money-item">
  45. <view style="color:#F95151" class="red-status">
  46. {{tools.toFix(overdueData.money / 100)}}
  47. </view>
  48. <view style="color:#F95151">逾期金额·$</view>
  49. </view>
  50. <view @tap="bindExpanded">
  51. <text>{{isExpanded?'收起':'展开'}}</text>
  52. <img
  53. :src="isExpanded?'https://qiniu.bms16.com/FvRah8ro91B_TUVEmInBq6n69W2f':'https://qiniu.bms16.com/FtbxPP0aXYG8hyJTEJfNTXa_Puuc'" />
  54. </view>
  55. </view>
  56. <view v-if="orderInfo.order_type == 3" class="flex-row flex-between">
  57. <view class="money-item">
  58. <view></view>
  59. <view>租借周期:购买</view>
  60. </view>
  61. <view class="money-item">
  62. <view :class="orderInfo.order_status == 4?'red-status':''">
  63. {{orderInfo.order_status == 4?tools.toFix(over_fee/100):tools.toFix(orderInfo.money / 100)}}<text>元</text>
  64. </view>
  65. <view>订单金额</view>
  66. </view>
  67. <view @tap="bindExpanded">
  68. <text>{{isExpanded?'收起':'展开'}}</text>
  69. <img
  70. :src="isExpanded?'https://qiniu.bms16.com/FvRah8ro91B_TUVEmInBq6n69W2f':'https://qiniu.bms16.com/FtbxPP0aXYG8hyJTEJfNTXa_Puuc'" />
  71. </view>
  72. </view>
  73. <view v-if="isExpanded" class="dashed-border"></view>
  74. <view v-if="isExpanded">
  75. <view class="big-text">订单信息</view>
  76. <view class="sn-content flex-row flex-between">
  77. <view class="sn-title">订单编号</view>
  78. <view class="sn-text">{{orderInfo.sub_sn}}</view>
  79. </view>
  80. <view class="sn-content flex-row flex-between">
  81. <view class="sn-title">下单时间</view>
  82. <view class="sn-text">{{tools.formatTime(orderInfo.ctime)}}</view>
  83. </view>
  84. <view v-if="orderInfo.pay_time" class="sn-content flex-row flex-between">
  85. <view class="sn-title">支付时间</view>
  86. <view class="sn-text">{{tools.formatTime(orderInfo.pay_time)}}</view>
  87. </view>
  88. <view class="sn-content flex-row flex-between">
  89. <view class="sn-title">支付方式</view>
  90. <view v-if="orderInfo.pay_type == 0" class="sn-text">微信支付</view>
  91. <view v-if="orderInfo.pay_type == 1" class="sn-text">线下支付</view>
  92. <view v-if="orderInfo.pay_type == 2" class="sn-text">支付宝支付</view>
  93. <view v-if="orderInfo.pay_type == 9" class="sn-text">钱包余额支付</view>
  94. </view>
  95. <view v-if="orderInfo.order_type != 3" class="sn-content flex-row flex-between">
  96. <view class="sn-title">租车金额</view>
  97. <view class="sn-text">$ {{tools.toFix(orderInfo.hire_money/1000)}}</view>
  98. </view>
  99. <view v-if="orderInfo.order_type != 3" class="sn-content flex-row flex-between">
  100. <view class="sn-title">租车押金</view>
  101. <view class="sn-text"><text class="grey-text"></text> $
  102. {{tools.toFix(orderInfo.deposit/1000)}}
  103. </view>
  104. </view>
  105. </view>
  106. </view>
  107. </view>
  108. <view class="car-info">
  109. <view class="flex-row flex-between" style="margin-bottom: 40rpx;">
  110. <text>自行去门店取还</text>
  111. <text class="distance-num">{{orderInfo.distance}}m</text>
  112. </view>
  113. <view class="flex-row store-img-view">
  114. <img src="https://qiniu.bms16.com/FrwDlFZdSMiBgqnqDjB19PiDUmuu" alt="">
  115. <view style="width: calc(100% - 180rpx);margin-left: 24rpx;">
  116. <view class="store-name">{{orderInfo.shop_name}}</view>
  117. <view class="store-name-address">{{orderInfo.address || '未知地址'}}</view>
  118. <view class="flex-row flex-between align-center">
  119. <view class="flex-row time-style align-center">
  120. <img v-if="orderInfo.work_begin_time && orderInfo.work_end_time"
  121. style="width: 40rpx;height: 40rpx;"
  122. src="https://qiniu.bms16.com/Fp-G1pdXxnTV-G3qFbgS453AuqcU" alt="">
  123. <text
  124. v-if="orderInfo.work_begin_time && orderInfo.work_end_time">{{orderInfo.work_begin_time}}-{{orderInfo.work_end_time}}</text>
  125. </view>
  126. <img @click="navToCabinet" style="width: 112rpx;height: 64rpx;"
  127. src="https://qiniu.bms16.com/Fts38M35doVjK09GfOza5qD-wwkK" alt="">
  128. </view>
  129. </view>
  130. </view>
  131. </view>
  132. <view class="car-info">
  133. <view>车辆信息</view>
  134. <view class="car-top flex-row flex-between">
  135. <view>
  136. <view class="top-flex">
  137. <view>{{orderInfo.model_name}}</view>
  138. <view>续航{{(orderInfo.endurance /1000).toFixed(0)}}km|重量{{(orderInfo.weight / 1000).toFixed(0)}}kg</view>
  139. </view>
  140. <!-- //配套服务 -->
  141. <view class="serviceList">
  142. <view v-for="(item,index) of orderInfo.service_list" :key="index" class="tag">
  143. {{item}}
  144. </view>
  145. </view>
  146. </view>
  147. <image mode="aspectFill" v-if="orderInfo.model_images" :src="orderInfo.model_images"></image>
  148. <image v-else src="https://qiniu.bms16.com/FhEvnKUckAHPtWaC04mi2s53IEVj" mode=""></image>
  149. </view>
  150. <!-- <view class="exchange-info">
  151. <view class="flex-row flex-between">
  152. <view class="exchange-info-title flex-row align-center">
  153. <img style="width: 40rpx;height: 40rpx;" src="https://qiniu.bms16.com/Fj_ifr41AqH2PijZBdOBa3SCxADg" alt="">
  154. <text style="margin-left: 16rpx;">换电信息</text>
  155. </view>
  156. <view @tap="navToExchange" class="flex-row" style="margin-bottom: 28rpx;">
  157. <view class="exchange-button">共3次</view>
  158. <image src="https://qiniu.bms16.com/FpIN7AVzFU75slFlX-SIdnSEmn1k" style="width: 28rpx;height: 28rpx;" />
  159. </view>
  160. </view>
  161. <view class="exchange-content">本单可享3次免费换电数,超出后需单独支付</view>
  162. <view class="exchange-content">自费换电:S1/次</view> -->
  163. <!-- <view class="exchange-content">本单您可享受{{orderInfo.gift_exchange_num}}次免费换电,
  164. 当前免费换电剩余{{(orderInfo.gift_exchange_num - orderInfo.used_exchange_num) > 0 ? (orderInfo.gift_exchange_num - orderInfo.used_exchange_num) : '0' }}次,超出后需要单独支付换电费用
  165. </view> -->
  166. <!-- </view> -->
  167. </view>
  168. <view v-if="orderInfo.hire_begin_time!=0&&orderInfo.hire_end_time!=0" class="return-info">
  169. <view class="return-top flex-row flex-between">
  170. <view>取还时间</view>
  171. <view>
  172. <!-- 共3天{{orderInfo.hire_return_time.day > 0 ? orderInfo.hire_return_time.day :'' }}<text
  173. v-if="orderInfo.hire_return_time.day>0">日</text>{{orderInfo.hire_return_time.hour > 0 ? orderInfo.hire_return_time.hour :'' }}<text
  174. v-if="orderInfo.hire_return_time.hour>0">小时</text>{{orderInfo.hire_return_time.minute > 0 ? orderInfo.hire_return_time.minute :'' }}<text
  175. v-if="orderInfo.hire_return_time.minute>0">分</text> -->
  176. 共{{hireDurationUnitsFn(orderInfo.total_hire_time,orderInfo.hire_duration_unit)}}
  177. </view>
  178. </view>
  179. <view class="return-bottom flex-row">
  180. <view>{{orderInfo.hire_begin_times}}</view>
  181. <img src="https://qiniu.bms16.com/FoXmBbj7YGWmjyeuVEY35nzieqnx" />
  182. <view>{{orderInfo.hire_end_times}}</view>
  183. <!-- <view>{{tools.formatTimeDate(orderInfo.hire_begin_time)}}</view>
  184. <img src="https://qiniu.bms16.com/FoXmBbj7YGWmjyeuVEY35nzieqnx" />
  185. <view>{{tools.formatTimeDate(orderInfo.hire_end_time)}}</view> -->
  186. </view>
  187. </view>
  188. <view v-if="orderInfo.order_status==2||orderInfo.order_status==3||orderInfo.order_status==4"
  189. class="overdue-info">
  190. <view>逾期规则</view>
  191. <view class="overdue-one">
  192. <view>1. 逾期后还可用车吗?</view>
  193. <view>如果逾期将触发智能锁车逻辑,可能导致您无法正常用车,请及时续费或联系商家处理。</view>
  194. </view>
  195. <view class="overdue-two">
  196. <view>2. 逾期费计算标准是什么?</view>
  197. <view>小时租逾期费=每小时费用*逾期小时;当日还/日/周/月/季租逾期费=每天费用*逾期天数;如果不满1小时按1小时算,不满1天按1天算,最终收取的逾期费以门店确认的费用为准</view>
  198. </view>
  199. <view class="overdue-thr">
  200. <view>3. 逾期后续租如何收费?</view>
  201. <view>逾期后及时续租不收取逾期费,逾期时长将从续租订单的用车时间中抵扣</view>
  202. </view>
  203. </view>
  204. <view class="inset-bottom"></view>
  205. <view class="payment-info flex-row flex-between">
  206. <view>
  207. <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>
  208. </view>
  209. <view class="flex-row">
  210. <view v-if="orderInfo.order_status == 1" @tap="navToScan" class="sesame-btn ">扫码绑定</view>
  211. <view v-if="orderInfo.order_status == 2" @tap="navToScan" class="sesame-btn ">去上传</view>
  212. <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>
  213. <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>
  214. <view @tap="callStorePhone" class="deposit-btn ">联系门店</view>
  215. </view>
  216. </view>
  217. <!-- <view class="payment-info flex-row flex-between">
  218. <view v-if="orderInfo.order_status == 1 || orderInfo.pay_status == 5" class="flex-row">
  219. <view v-if="orderInfo.order_type != 3"
  220. class="cancel" @tap="clickCancel">结束订单
  221. </view>
  222. <view @tap="callStorePhone" class="deposit-btn ">联系门店</view>
  223. </view>
  224. <view v-if="orderInfo.order_status == 1" class="flex-row">
  225. <view @tap="callStorePhone" class="deposit-btn ">联系门店</view>
  226. <view @tap="navToScan" class="sesame-btn ">扫码绑定</view>
  227. </view>
  228. <view v-if="orderInfo.order_status == 2" class="flex-row">
  229. <view @tap="callStorePhone" class="deposit-btn ">联系门店</view>
  230. <view @tap="navToScan" class="sesame-btn ">去上传</view>
  231. </view>
  232. <view
  233. v-else-if="(orderInfo.order_status == 3||orderInfo.order_status == 4) && orderInfo.order_type != 3 && orderInfo.pay_status != 5"
  234. class="flex-row">
  235. <view @tap="callStorePhone" class="cancel">联系门店</view>
  236. <view @tap="tapReturnCar" class="deposit-btn">到店还车</view>
  237. <view @tap="bindRenew" class="sesame-btn">续租</view>
  238. </view>
  239. <view v-else-if="orderInfo.order_status == 5||orderInfo.order_status == 6" @tap="callStorePhone"
  240. class="pay-btn">
  241. 联系门店</view>
  242. <view v-else-if="orderInfo.order_status == 7" @tap="callStorePhone" class="pay-btn">联系门店</view>
  243. <view v-if="orderInfo.order_type == 3 && (orderInfo.order_status == 3||orderInfo.order_status == 4)"
  244. @tap="callStorePhone" class="pay-btn">联系门店</view>
  245. </view> -->
  246. <view v-if="isShowCancel" class="cancel-b">
  247. <view class="cancel-box">
  248. <view class="cancel-title flex-row flex-between">
  249. <view>选择取消原因</view>
  250. <view @tap="isShowCancel = false" style="font-size: 60rpx;">×</view>
  251. </view>
  252. <view @click="reason = '行程变更无需用车'" class="cancel-item flex-row flex-between">
  253. <view>行程变更无需用车</view>
  254. <img
  255. :src="reason == '行程变更无需用车'?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
  256. </view>
  257. <view @click="reason = '修改订单信息'" class="cancel-item flex-row flex-between">
  258. <view>修改订单信息</view>
  259. <img
  260. :src="reason == '修改订单信息'?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
  261. </view>
  262. <view @click="reason = '不想要了'" class="cancel-item flex-row flex-between">
  263. <view>不想要了</view>
  264. <img
  265. :src="reason == '不想要了'?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
  266. </view>
  267. <view @click="bindCancel" class="cancel_btn">确认取消</view>
  268. </view>
  269. </view>
  270. <returnCar :isShowReturnCar="isShowReturnCar" @closeShowReturnCarBtn="()=>isShowReturnCar=false"
  271. @navStoreBtn="navStoreBtn" @immediatelyReturnBtn="immediatelyReturnBtn" />
  272. <carPlan :isBuy='false' @payToOrder='payReturn' v-if="showCarPlan" @changeSelectType="changeSelectType"
  273. @closeShowMore="showCarPlan = false" :params="params" :selectType="selectType" />
  274. <PayTypeModel @closeShow="()=>isShowToBuy=false" @payToOrder="payToOrder" :free_price="totalPrice"
  275. :isShowToBuy="isShowToBuy" />
  276. </view>
  277. </template>
  278. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  279. <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
  280. <script>
  281. var config_gyq = require('../../common/config_gyq.js');
  282. var config = require('../../common/config.js');
  283. var request = require('../../common/request');
  284. var common = require('../../common/common.js');
  285. var http = require('../../common/http.js');
  286. var storage = require('../../common/storage.js');
  287. var user = require('../../common/user.js');
  288. //
  289. import {
  290. getRemainingTime
  291. } from '@/utils/util';
  292. var appWhiteListFilter = require('../../common/appWhiteListFilter.js');
  293. import allPrice from '@/component/allPrice/allPrice';
  294. import ReturnCar from '@/component/returnCar/returnCar';
  295. import carPlan from '@/component/carPlan/carPlan';
  296. import PayTypeModel from '@/component/payTypeModel/payTypeModel';
  297. import dayjs from 'dayjs'
  298. import duration from 'dayjs/plugin/duration'
  299. dayjs.extend(duration);
  300. export default {
  301. components: {
  302. allPrice,
  303. ReturnCar,
  304. PayTypeModel,
  305. carPlan
  306. },
  307. data() {
  308. return {
  309. overdueData: {},
  310. select_type: '',
  311. car_detail: {},
  312. showCarPlan: false,
  313. return_imgs: {},
  314. charge_standard: {},
  315. isShowCancel: false,
  316. order_sn: '',
  317. reason: '行程变更无需用车',
  318. orderInfo: {},
  319. shop_image: [],
  320. isExpanded: false,
  321. isShowPrice: false,
  322. timer: '',
  323. isSelectStatus: 1,
  324. price_list: [], //车辆价格 hire_duration_unit 1 日 4 小时 6 周
  325. insurance_status: 0,
  326. over_fee: 0, //逾期金额
  327. plate_number: '',
  328. isScanCondeRentalCar: '',
  329. isShowReturnCar: false,
  330. isShowToBuy: false,
  331. totalPrice: 0, //逾期支付金额
  332. };
  333. },
  334. /**
  335. * 生命周期函数--监听页面加载
  336. */
  337. onLoad: function(options) {
  338. this.sub_sn = options.sub_sn || ''
  339. this.bindOrderInfo()
  340. },
  341. /**
  342. * 生命周期函数--监听页面显示
  343. */
  344. onShow: function(e) {
  345. if (this.sub_sn && this.orderInfo.sub_sn) {
  346. this.bindOrderInfo()
  347. }
  348. },
  349. onUnload: function() {},
  350. computed: {},
  351. methods: {
  352. payReturn() {},
  353. //逾期费用计算
  354. async overdueMoneyFn(car_sn) {
  355. let {
  356. data
  357. } = await request.postApi(config_gyq.API_FLK_CAR_OVERDUE_MONEY, {
  358. car_sn
  359. })
  360. if (data.code == 200) {
  361. this.overdueData = data.data
  362. } else {
  363. common.simpleToast(data.msg)
  364. }
  365. },
  366. payToOrder() {},
  367. async loadCarInfo(model_id) {
  368. const me = this
  369. http.postApi(config.API_FLK_INDEX_CAR_MODEL_DETAIL, {
  370. model_id,
  371. }, (resp) => {
  372. if (resp.data.code === 200) {
  373. const pData = {
  374. ...this.car_detail,
  375. price: this.price
  376. }
  377. me.setData({
  378. car_detail: resp.data.data,
  379. params: {
  380. order_sn: this.orderInfo.order_sn,
  381. ...resp.data.data,
  382. price: (resp.data.data.rental_setting[0].hire_price / 100).toFixed(2)
  383. }
  384. })
  385. } else {
  386. common.simpleToast(resp.data.msg);
  387. }
  388. })
  389. },
  390. changeSelectType(select_type, price) {
  391. this.setData({
  392. selectType: select_type,
  393. price: (price / 100).toFixed(2)
  394. })
  395. },
  396. async carDetFn(car_sn){
  397. let {data} = await request.postApi(config.API_FLK_CAR_DETAIL, {car_sn})
  398. if (data.code === 200) {
  399. if(data.data.model_id == this.orderInfo.model_id){
  400. return true
  401. }else{
  402. common.simpleToast('车型不匹配!')
  403. return false
  404. }
  405. if(data.data.is_hire == 1){
  406. return true
  407. }else{
  408. common.simpleToast('车辆已被租售!')
  409. return false
  410. }
  411. if(data.data.is_display == 1){
  412. return true
  413. }else{
  414. common.simpleToast('车辆未展示!')
  415. return false
  416. }
  417. } else {
  418. common.simpleToast('请扫描正确的二维码!')
  419. return false
  420. }
  421. return false
  422. },
  423. async navToScan() {
  424. let car_sn = this.orderInfo.car_sn || ''
  425. if (!car_sn) {
  426. let res = await uni.scanCode({
  427. onlyFromCamera: true,
  428. scanType: ['qrCode'],
  429. });
  430. if (res[0]) return
  431. car_sn = res[1].result
  432. if(!await this.carDetFn(car_sn)) return
  433. }
  434. uni.showLoading({
  435. title: '识别中....',
  436. mask: true
  437. })
  438. setTimeout(()=> {
  439. uni.hideLoading();
  440. uni.navigateTo({
  441. url: `/pages/activation/activation?model_id=${this.orderInfo.model_id}&sub_sn=${this.sub_sn}&car_sn=${car_sn}`
  442. })
  443. }, 1000);
  444. },
  445. navToCabinet() {
  446. const {
  447. latitude,
  448. longitude,
  449. cityname,
  450. address,
  451. shop_name
  452. } = this.orderInfo
  453. uni.openLocation({
  454. latitude: latitude - 0,
  455. longitude: longitude - 0,
  456. scale: 15,
  457. name: shop_name,
  458. address: address,
  459. success: function(res) {}
  460. });
  461. },
  462. hireDurationUnitFn(type) {
  463. if (type == 1) {
  464. return '天'
  465. } else if (type == 2) {
  466. return '月'
  467. } else if (type == 3) {
  468. return '年'
  469. } else if (type == 4) {
  470. return '小时'
  471. } else if (type == 5) {
  472. return '分钟'
  473. } else if (type == 6) {
  474. return '周'
  475. } else if (type == 7) {
  476. return '季'
  477. }
  478. },
  479. hireDurationUnitsFn(time, type) {
  480. if (type == 1) {
  481. return Math.ceil(time / 60 / 60 / 24) + '天'
  482. } else if (type == 2) {
  483. return Math.ceil(time / 60 / 60 / 24 / 30) + '月'
  484. } else if (type == 3) {
  485. return Math.ceil(time / 60 / 60 / 24 / 30 / 365) + '年'
  486. } else if (type == 4) {
  487. return Math.ceil(time / 60 / 60) + '小时'
  488. } else if (type == 5) {
  489. return Math.ceil(time / 60) + '分钟'
  490. } else if (type == 6) {
  491. return Math.ceil(time / 60 / 60 / 24 / 7) + '周'
  492. } else if (type == 7) {
  493. return Math.ceil(time / 60 / 60 / 24 / 30 / 3) + '季'
  494. }
  495. },
  496. async bindOrderInfo() {
  497. const me = this
  498. const locationStr = uni.getStorageSync('user_current_location');
  499. // if (locationStr) {
  500. // this.myLocation = locationStr;
  501. // }
  502. http.postApi(config.API_FLK_ORDER_INFO, {
  503. sub_sn: me.sub_sn,
  504. latitude: locationStr.latitude,
  505. longitude: locationStr.longitude,
  506. }, (resp) => {
  507. if (resp.data.code === 200) {
  508. me.orderInfo = resp.data.data.order_info
  509. me.orderInfo.model_images = me.orderInfo.model_images.split(',')[0]
  510. //
  511. if (resp.data.data.order_info.model_id) {
  512. me.loadCarInfo(resp.data.data.order_info.model_id)
  513. }
  514. let distance = common.getFlatternDistance(locationStr.longitude, locationStr.latitude, me
  515. .orderInfo.longitude, me.orderInfo.latitude)
  516. resp.data.data.order_info.distance = distance
  517. // 取还时间展示
  518. // me.orderInfo.hire_return_time = common.getTimeToDay(Math.ceil(me.orderInfo
  519. // .hire_end_time - me.orderInfo.hire_begin_time) / 60)
  520. me.orderInfo.hire_return_time = getRemainingTime(me.orderInfo
  521. .hire_begin_time, me
  522. .orderInfo.hire_end_time)
  523. me.orderInfo.hire_begin_times = me.orderInfo.hire_begin_time ? dayjs(me
  524. .orderInfo
  525. .hire_begin_time * 1000).format(
  526. 'YY-MM-DD') : 0
  527. me.orderInfo.hire_end_times = me.orderInfo.hire_end_time ? dayjs(me
  528. .orderInfo
  529. .hire_end_time * 1000).format(
  530. 'YY-MM-DD') : 0
  531. console.log(me.orderInfo.order_status == 1);
  532. let other_time=0
  533. // 剩余租期判断
  534. if (me.orderInfo.order_status == 1){
  535. me.orderInfo.hire_duration_time=common.countToDay(me.orderInfo.hire_cycle*me.orderInfo.hire_duration,me.orderInfo.hire_duration_unit)
  536. console.log(me.orderInfo.hire_duration_time,'me.orderInfo.hire_duration_time');
  537. }else if((me.orderInfo.hire_type == 2 && me.orderInfo.order_status == 2) ||me.orderInfo.order_status == 3) {
  538. me.orderInfo.hire_duration_time = common.timestampToDays(Math.ceil(me.orderInfo.hire_end_time - Math.floor(new Date()) /1000))
  539. } else {
  540. if (me.orderInfo.order_status == 4) {
  541. me.overdueMoneyFn(me.orderInfo.car_sn)
  542. me.orderInfo.hire_duration_time = common.timestampToDays(Math.ceil(Math.floor(new Date()) / 1000 - me.orderInfo.hire_end_time))
  543. } else {
  544. me.orderInfo.hire_duration_time = common.timestampToDays(Math.ceil(me.orderInfo.hire_begin_time - me.orderInfo.hire_end_time))
  545. }
  546. }
  547. } else {
  548. // 默认返回上一个页面再提示报错
  549. uni.navigateBack({
  550. delta: 1
  551. })
  552. common.simpleToast(resp.data.msg)
  553. }
  554. })
  555. },
  556. navStoreBtn() {
  557. const {
  558. latitude,
  559. longitude,
  560. address,
  561. shop_name
  562. } = this.orderInfo
  563. uni.openLocation({
  564. latitude: latitude - 0,
  565. longitude: longitude - 0,
  566. scale: 15,
  567. name: shop_name,
  568. address: address,
  569. success: function(res) {}
  570. });
  571. },
  572. tapReturnCar() {
  573. this.setData({
  574. isShowReturnCar: true
  575. })
  576. },
  577. immediatelyReturnBtn() {
  578. //到店还车 判断逾期状态 如果逾期要交逾期费用 跳转到上传车辆图片再支付逾期费用还车
  579. const isOverdue = this.orderInfo.order_status == 4
  580. const {
  581. car_sn,
  582. shop_id,
  583. overdue_money
  584. } = this.orderInfo
  585. const returnCarParams = {
  586. car_sn,
  587. shop_id,
  588. overdue_money,
  589. isReturnCar: true,
  590. }
  591. //提交还车图片
  592. uni.navigateTo({
  593. url: `/pages/activation/activation?isReturnCar=true,model_id=${this.orderInfo.model_id}&sub_sn=${this.sub_sn}&car_sn=${this.orderInfo.car_sn}&isOverdue=${isOverdue}&overdueMoney=${this.overdueData.money}&overdueTime=${this.overdueData.time}`
  594. });
  595. // if (isOverdue) {
  596. // this.setData({
  597. // totalPrice: this.overdueData.money,
  598. // isShowToBuy: true
  599. // })
  600. // } else {
  601. // //提交还车图片
  602. // uni.navigateTo({
  603. // url: `/pages/activation/activation?isReturnCar=true,model_id=${this.orderInfo.model_id}&sub_sn=${this.sub_sn}&car_sn=${this.orderInfo.car_sn}&isOverdue=${isOverdue}&overdueMoney=${this.overdueData.money}&overdueTime=${this.overdueData.time}`
  604. // });
  605. // }
  606. },
  607. callStorePhone() {
  608. const phone = this.orderInfo.link_phone
  609. common.callPhone(phone)
  610. },
  611. async clickCancel() {
  612. this.isShowCancel = true
  613. },
  614. async bindCancel() {
  615. const me = this
  616. let res = await uni.showModal({
  617. title: '取消订单',
  618. content: '您是否需要取消该订单',
  619. confirmText: '是',
  620. confirmColor: '#0074FF',
  621. cancelText: '否',
  622. cancelColor: '#191D23',
  623. });
  624. if (res[1].confirm) {
  625. let {
  626. data
  627. } = await request.postApi(config.API_DAYHIRE_HIRE_CANCEL_ORDER, {
  628. sub_sn: this.sub_sn,
  629. remark: this.reason
  630. })
  631. if (data.code == 200) {
  632. common.simpleToast(data.msg)
  633. this.isShowCancel = false
  634. this.bindOrderInfo()
  635. } else {
  636. common.simpleToast(data.msg)
  637. }
  638. }
  639. },
  640. bindToNav() {
  641. console.log(111);
  642. const {
  643. address,
  644. latitude,
  645. longitude,
  646. shop_name
  647. } = this.shopInfo
  648. uni.openLocation({
  649. latitude: latitude - 0,
  650. longitude: longitude - 0,
  651. scale: 15,
  652. name: shop_name,
  653. address: address,
  654. success: function(res) {},
  655. })
  656. },
  657. bindToHome() {
  658. uni.reLaunch({
  659. url: '/pages/index/index',
  660. success: function(res) {},
  661. fail: function(res) {},
  662. complete: function(res) {}
  663. });
  664. },
  665. callPhone() {
  666. const me = this
  667. const phone = me.shopInfo.link_phone
  668. uni.showModal({
  669. content: `您是否要拨打电话${phone}?`,
  670. confirmText: '确定',
  671. success: (res) => {
  672. if (res.confirm) {
  673. uni.makePhoneCall({
  674. phoneNumber: phone,
  675. success() {},
  676. fail() {}
  677. })
  678. }
  679. },
  680. fail: (res) => {}
  681. })
  682. },
  683. bindRenew() {
  684. this.params.overdueData = this.overdueData
  685. this.showCarPlan = true
  686. // this.isReturnHome = false
  687. // let isRenew = true
  688. // uni.navigateTo({
  689. // url: '/pages/carIntroduce/carIntroduce?plate_number=' + this.orderInfo
  690. // .license_plate_number +
  691. // '&isRenew=' + isRenew +
  692. // '&order_sn=' + this.order_sn,
  693. // success: function(res) {},
  694. // fail: function(res) {},
  695. // complete: function(res) {}
  696. // });
  697. },
  698. bindBattery() {
  699. this.isReturnHome = false
  700. uni.navigateTo({
  701. url: '/pages/battery/battery?plate_number=' + this.orderInfo.license_plate_number,
  702. success: function(res) {},
  703. fail: function(res) {},
  704. complete: function(res) {}
  705. });
  706. },
  707. bindExpanded() {
  708. this.isExpanded = !this.isExpanded
  709. },
  710. navToInput() {
  711. this.isReturnHome = false
  712. uni.navigateTo({
  713. url: '/pages/inputLicensePlate/inputLicensePlate?order_sn=' + this.orderInfo
  714. .order_sn,
  715. success: function(res) {},
  716. fail: function(res) {},
  717. complete: function(res) {}
  718. });
  719. },
  720. // 激活车辆
  721. navToActive() {
  722. this.isReturnHome = false
  723. const me = this
  724. if (this.orderInfo.hire_type == 1) { // 预约
  725. if (me.isScanCondeRentalCar) {
  726. uni.scanCode({
  727. onlyFromCamera: true,
  728. success: function(res) {
  729. me.loadScanCode(res.result)
  730. },
  731. fail: function(res) {},
  732. complete: function(res) {},
  733. })
  734. } else {
  735. uni.navigateTo({
  736. url: '/pages/inputLicensePlate/inputLicensePlate?order_sn=' + this
  737. .order_sn + '&order_model_id=' + this.orderInfo.model_id,
  738. success: function(res) {},
  739. fail: function(res) {},
  740. complete: function(res) {}
  741. });
  742. }
  743. } else { // 非预约
  744. const isJumpReturn = false
  745. uni.navigateTo({
  746. url: '/pages/activation/activation?order_sn=' + this.order_sn +
  747. '&plate_number=' + this
  748. .orderInfo.license_plate_number + '&isJumpReturn=' + isJumpReturn,
  749. success: function(res) {},
  750. fail: function(res) {},
  751. complete: function(res) {}
  752. });
  753. }
  754. },
  755. loadScanCode(battery_sn) {
  756. const pData = {
  757. longitude: this.longitude,
  758. latitude: this.latitude,
  759. battery_sn: battery_sn
  760. }
  761. const me = this
  762. http.postApi(config.API_DAYHIRE_CAR_CAR_INFO, pData, (resp) => {
  763. uni.hideLoading()
  764. if (resp.data.code === 200) {
  765. const timestamp = Date.now(); // 获取当前时间戳(毫秒)
  766. const isOffline = (Math.floor(timestamp / 1000) - resp.data.data
  767. .last_comm_time) > 1800
  768. me.plate_number = resp.data.data.license_plate_number
  769. if (resp.data.data.last_comm_time === 0 || isOffline) {
  770. common.simpleToast('此车辆已离线,请选择其他车辆')
  771. } else {
  772. let carInfo = JSON.stringify(resp.data.data)
  773. const car_model = resp.data.data.model_info.car_model
  774. const model_images = resp.data.data.model_info.model_images.split(',')
  775. const return_imgs = resp.data.data.return_imgs
  776. var model_id = resp.data.data.model_info.model_id
  777. if (resp.data.data.has_owner) { //车辆正在被使用
  778. if (resp.data.data.is_mine) { //是本人在使用
  779. wx.showModal({
  780. title: '提示',
  781. content: '已有正在使用的车辆,是否跳转至车辆详情页?',
  782. cancelText: '取消',
  783. confirmText: '确定',
  784. success: function(res) {
  785. this.isReturnHome = false
  786. uni.navigateTo({
  787. url: '/pages/battery/battery?plate_number=' +
  788. this.plate_number
  789. });
  790. },
  791. fail: function(res) {},
  792. complete: function(res) {},
  793. })
  794. } else {
  795. common.simpleToast('此车辆正在被使用')
  796. }
  797. } else {
  798. if (me.order_sn && me.order_sn != '') {
  799. if (this.orderInfo.model_id != model_id) { // 预租车型与之前预约车型不一致
  800. common.simpleToast('与预约车型不符')
  801. } else {
  802. this.isReturnHome = false
  803. uni.navigateTo({
  804. url: '/pages/activation/activation?plate_number=' +
  805. this.plate_number + '&order_sn=' + this
  806. .order_sn +
  807. '&car_model=' + car_model + '&model_image=' +
  808. model_images[0] + '&return_imgs=' + JSON
  809. .stringify(
  810. return_imgs),
  811. fail() {}
  812. })
  813. }
  814. } else {
  815. this.isReturnHome = false
  816. uni.navigateTo({
  817. url: '/pages/carIntroduce/carIntroduce?carInfo=' +
  818. encodeURIComponent(carInfo) + '&plate_number=' +
  819. this.plate_number,
  820. fail() {}
  821. })
  822. }
  823. }
  824. }
  825. } else {
  826. common.simpleToast(resp.data.msg)
  827. }
  828. })
  829. },
  830. bindToPay() {
  831. const me = this
  832. //#ifdef MP-ALIPAY
  833. const _from = 'ali'
  834. const _pay_type = 2
  835. //#endif
  836. //#ifdef MP-WEIXIN
  837. const _from = 'wx'
  838. const _pay_type = 0
  839. //#endif
  840. http.postApi(config.API_DAYHIRE_HIRE_CONTINUE_PAY, {
  841. order_sn: me.order_sn,
  842. from: _from,
  843. pay_type: _pay_type
  844. }, (resp) => {
  845. common.loading()
  846. if (resp.data.code === 200) {
  847. uni.hideLoading()
  848. //#ifdef MP-ALIPAY
  849. my.tradePay({
  850. tradeNO: resp.data.data.trade_no,
  851. success: function(res) {
  852. if (res.resultCode == 9000) {
  853. common.simpleToast('支付成功');
  854. }
  855. setTimeout(function() {
  856. me.bindOrderInfo()
  857. }, 1000)
  858. },
  859. fail: function(res) {
  860. common.simpleToast('支付失败,请重试')
  861. },
  862. })
  863. //#endif
  864. //#ifdef MP-WEIXIN
  865. var payParams = JSON.parse(resp.data.data.payParams);
  866. user.wxPay(me.order_sn, payParams, function(isSuccess) {
  867. if (isSuccess) {
  868. common.simpleToast('支付成功')
  869. setTimeout(function() {
  870. me.bindOrderInfo()
  871. }, 1000)
  872. } else {
  873. common.simpleToast('支付失败,请重试')
  874. }
  875. });
  876. //#endif
  877. } else {
  878. uni.hideLoading()
  879. common.simpleToast(resp.data.msg)
  880. }
  881. })
  882. },
  883. // 计算拖车说明收费价格
  884. calculateFare(distance, charge_list) {
  885. let fare = 0
  886. if (distance <= charge_list.start_mil) {
  887. fare = charge_list.start_price / 100
  888. } else {
  889. // actual_start_mil:实际距离单位米
  890. // over_start_price:向上取整的公里数*超出首公里的费用
  891. var actual_start_mil = distance - charge_list.start_mil
  892. var over_start_price = (Math.ceil(actual_start_mil / charge_list.step_mil)) * charge_list
  893. .step_price
  894. fare = (charge_list.start_price + over_start_price) / 100
  895. }
  896. const fareArray = fare.toFixed(2).split('.'); //将价格拆分为整数部分和小数部分
  897. const price_list = {
  898. start_mil: (charge_list.start_mil / 1000).toFixed(2),
  899. start_price: (charge_list.start_price / 100).toFixed(2),
  900. step_mil: (charge_list.step_mil / 1000).toFixed(2),
  901. step_price: (charge_list.step_price / 100).toFixed(2),
  902. actual_start_mil: actual_start_mil ? (actual_start_mil / 1000).toFixed(2) : 0,
  903. over_start_price: over_start_price ? (over_start_price / 100).toFixed(2) : 0,
  904. fare: fare.toFixed(2), // 保留两位小数
  905. fareArray: fareArray //将价格拆分为整数部分和小数部分
  906. }
  907. return price_list
  908. },
  909. bindChangeStatus(e) {
  910. const {
  911. status,
  912. unit
  913. } = e.currentTarget.dataset
  914. this.setData({
  915. isSelectStatus: unit,
  916. selectIndex: status
  917. })
  918. // this.bindDuration()
  919. },
  920. //计算价格
  921. // bindDuration(){
  922. // const me = this
  923. // var _insurance_price //保险金
  924. // const unit_price=(me.price_list[0].hire_price/100) * me.leaseTime //租金
  925. // // insurance_setting 保险
  926. // if (me.insurance_setting!=null) { // 有保险的时候
  927. // // isSelectDeposit==0为免押 isOpenNoDeposit为是否成功开通免押 total_money为总金额
  928. // // unit_price 租金 insurance_setting.price 保险金 deposit 押金
  929. // if (me.duration_unit == 4) { // 时
  930. // _insurance_price = (me.insurance_setting.price - 0) * 1
  931. // } else if(me.duration_unit == 6) { // 周
  932. // _insurance_price = (me.insurance_setting.price - 0) * 7 * me.leaseTime
  933. // } else { //天
  934. // _insurance_price = (me.insurance_setting.price - 0) * me.leaseTime
  935. // }
  936. // } else { // 无保险
  937. // _insurance_price = 0
  938. // }
  939. // if (me.isOpenNoDeposit) {
  940. // // 金额=(周期数*周期价格)+保险金
  941. // me.amount = ((me.leaseTime * me.price_list[0].hire_price -0) + (_insurance_price - 0)) / 100
  942. // } else {
  943. // // 金额=(周期数*周期价格)+押金+保险金
  944. // me.amount = ((me.leaseTime * me.price_list[0].hire_price -0) + (me.modelInfo.deposit -0) + (_insurance_price - 0)) / 100
  945. // }
  946. // },
  947. loadEnd() {
  948. this.bindOrderInfo()
  949. },
  950. navToExchange() {
  951. console.log('跳转换电记录');
  952. uni.navigateTo({
  953. url: '/pages/exchangeRecord/exchangeRecord' +
  954. '?order_sn=' + this.orderInfo.order_sn
  955. })
  956. }
  957. }
  958. };
  959. </script>
  960. <style>
  961. @import './orderStatus.css';
  962. .cancel_btn {
  963. width: 702rpx;
  964. height: 80rpx;
  965. background: #060809;
  966. border-radius: 40rpx;
  967. font-family: PingFangSC, PingFang SC;
  968. font-weight: 500;
  969. font-size: 32rpx;
  970. color: #FFFFFF;
  971. display: flex;
  972. align-items: center;
  973. justify-content: center;
  974. }
  975. </style>