orderStatus.vue 40 KB

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