orderStatus.vue 33 KB

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