orderStatus.vue 32 KB

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