purchaseOrder.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. <template>
  2. <view class="container-view">
  3. <navBar name="确认订单" left="0"></navBar>
  4. <view class="select-time-view">
  5. <view class="flex-row">选择取车时间</view>
  6. <view @tap="tapSelectTime" class="flex-row align-center" style="margin-bottom:20rpx ;">
  7. <text class="select-time-text">{{takeCar}}</text>
  8. <img style="width: 28rpx;height: 28rpx;" src="https://qiniu.bms16.com/FpbKGisSPfL9r8a7QkZCYXolhu1Y"
  9. alt="">
  10. </view>
  11. </view>
  12. <view class="car-info-view">
  13. <view class="flex-row align-center">
  14. <img style="width: 160rpx;height: 160rpx;border-radius: 16rpx;" :src="modelInfo.image" alt="">
  15. <view class="flex-row car-info-grow">
  16. <view class="flex-row align-center">
  17. <view class="car-name">{{modelInfo.car_model_name}}</view>
  18. <img style="width: 28rpx;height: 28rpx;"
  19. src="https://qiniu.bms16.com/FlMiRsUF-KZyevFCZDP9DwffOlag" alt="">
  20. </view>
  21. <view class="car-information">{{leaseUnitsResult}}
  22. 共计{{tools.countToDay(modelInfo.count,modelInfo.selectType)}}天</view>
  23. <allPrice v-if="modelInfo.selectType == 100" :amount="modelInfo.sell_price / 100"></allPrice>
  24. <allPrice v-else :amount="price"></allPrice>
  25. </view>
  26. </view>
  27. <view class="config-list-view">
  28. <view :class="service_list.length>4?'config-list-view-1 flex-row':'flex-row'">
  29. <view class="service_name-tab" v-for=" (item,indexs) in service_list" :key="indexs">
  30. {{item.service_name}}
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. <view v-if="modelInfo.selectType != 100" class="deposit-info">
  36. <view class="deposit-info-title flex-row flex-between">
  37. <text>车辆押金</text>
  38. <text>${{modelInfo.deposit/100}}</text>
  39. </view>
  40. <view class="deposit-info-text">需要支付{{modelInfo.deposit/100}}元押金,诺无车损、违章及逾期,还车后可退</view>
  41. </view>
  42. <view class="method-info">
  43. <view class="flex-row flex-between" style="margin-bottom: 40rpx;">
  44. <view class="font_32">前往门店取还</view>
  45. <view class="font_32">门店距您 <text class="distance-num">{{modelInfo.distance}}</text></view>
  46. </view>
  47. <view @tap="navAddress" class="shop-bg flex-row flex-between">
  48. <view class="shop-name-view">
  49. <!-- <view class="shop-name">{{shopInfo.shop_name}}</view>
  50. <view class="shop-address">{{shopInfo.address}}</view> -->
  51. <view class="shop-name">{{modelInfo.shop_name}}</view>
  52. <view class="shop-address">{{modelInfo.address}}</view>
  53. </view>
  54. <view class="nav-btn flex-row">
  55. <img style="width: 48rpx;height: 48rpx;" src="https://zxappfile.bms16.com/zx_admin/cab_nav.png"
  56. alt="">
  57. <view style="margin-top: 12rpx;font-size: 24rpx;">导航</view>
  58. </view>
  59. </view>
  60. </view>
  61. <view style="height: 224rpx;"></view>
  62. <view v-if="!isShowDetail" class="payment-info">
  63. <view class="payment-bottom flex-row flex-between">
  64. <view style="margin-right: 20rpx;" class="bottom-left flex-row">
  65. <allPrice :amount="totalPrice"></allPrice>
  66. <view v-if="modelInfo.selectType != 100" @tap="bindDetail" class="all-money">明细
  67. <image class="img" src="https://qiniu.bms16.com/Fvl1d-AWRvwY_ehNrw7bMZOK6LBZ" mode=""></image>
  68. </view>
  69. </view>
  70. <view @tap="navToPage">确认下单</view>
  71. </view>
  72. </view>
  73. <view v-else class="show-detail">
  74. <view class="detail-info">
  75. <view class="pay-money">
  76. <view class="flex-row flex-between" style="margin-bottom: 46rpx;">
  77. <view>价格明细</view>
  78. <view>
  79. <image style="width: 32rpx;height: 32rpx;" @tap="isShowDetail = false"
  80. src="https://qiniu.bms16.com/FtoTEHOJiUf_gjPCJGGHMsAtHI5M" />
  81. </view>
  82. </view>
  83. <view class="flex-row flex-between" style="margin-bottom: 44rpx;">
  84. <view>车辆租金</view>
  85. <view>
  86. <!-- ¥{{(leaseTime * price_list[0].hire_price) /100}} -->
  87. ¥{{price+'x'+modelInfo.count}}
  88. <text>{{leaseUnits}}</text>
  89. </view>
  90. </view>
  91. <view class="flex-row flex-between" style="margin-bottom: 44rpx;">
  92. <view>车辆押金</view>
  93. <view>¥{{modelInfo.deposit /100}}</view>
  94. </view>
  95. <view class="detail-money flex-row" style="padding-bottom: 44rpx;">
  96. <view style="margin-right: 20rpx;">支付金额</view>
  97. <allPrice :amount="totalPrice"></allPrice>
  98. </view>
  99. </view>
  100. <view class="second">
  101. <view class="payment-bottom flex-row flex-between">
  102. <view style="margin-right: 20rpx;" class="bottom-left flex-row">
  103. <allPrice :amount="totalPrice"></allPrice>
  104. <view @tap="isShowDetail = false" class="all-money">明细
  105. <image class="img" src="https://qiniu.bms16.com/FkzZI0r5jO-c2JRahNkZW2pHb9dR" mode=""></image>
  106. </view>
  107. </view>
  108. <view @tap="navToPage">确认下单</view>
  109. </view>
  110. </view>
  111. </view>
  112. </view>
  113. <calendar ref="calendar" :showPopup.sync="isShowCalendar" @valuesUpdated="handleValuesUpdated"
  114. @close="() => isShowCalendar = false" />
  115. <view v-if="isShowReturnCar" class="return-box">
  116. <view class="return-item">
  117. <view class="return-title flex-row flex-between">
  118. <view>还车到门店</view>
  119. <view @tap="isShowReturnCar = false" class="close-view"><img style="width: 24rpx;height: 24rpx;"
  120. src="https://qiniu.bms16.com/FoWVlo-Nmx6wTDpsL2Rf9_BamU7L" alt=""></view>
  121. </view>
  122. <view class="return-text">系统会根据您的定位判断您是否已到还车位置,如您已经到达门店,请点击「我已到店」按钮,待门店确认还车后,即可还车成功。</view>
  123. <view class="return-btn flex-row">
  124. <view @tap="toRurnCarPage">导航到店</view>
  125. <view @tap="toNearbyStorePage">我已到店</view>
  126. </view>
  127. </view>
  128. </view>
  129. <view v-if="isShowCheckOrder" class="return-box">
  130. <view class="return-item">
  131. <view style="text-align: center;margin-bottom: 120rpx;">
  132. <img style="width: 88rpx;height: 88rpx;" src="https://qiniu.bms16.com/Fqb-i2uJWlZOg8EvUXHr_1qhlndf"
  133. alt="">
  134. <view class="check-order-text">租车订单已提交</view>
  135. <view>请于 <text class="get-car-time">{{takeCar}}</text> 到 <text
  136. class="get-car-name">{{modelInfo.shop_name}}</text> 取车</view>
  137. </view>
  138. <view class="return-btn flex-row">
  139. <view @tap="toIndexPage">我知道了</view>
  140. <view @tap="toOrderInfo">订单详情</view>
  141. </view>
  142. </view>
  143. </view>
  144. <PayTypeModel @closeShow="closeShow" @payToOrder="payToOrder" :free_price="Number(totalPrice) * 100"
  145. :isShowToBuy="isShowToBuy" />
  146. </view>
  147. </template>
  148. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  149. <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
  150. <script>
  151. var config = require('../../common/config.js');
  152. var config_gyq = require('../../common/config_gyq.js');
  153. var common = require('../../common/common.js');
  154. var http = require('../../common/http.js');
  155. var request = require('../../common/request.js');
  156. var storage = require('../../common/storage.js');
  157. var user = require('../../common/user.js');
  158. import allPrice from '@/component/allPrice/allPrice';
  159. import calendar from '@/component/smartCalendar';
  160. import PayTypeModel from '@/component/payTypeModel/payTypeModel';
  161. import {
  162. MAX_LIMITS,
  163. LEASE_TYPE_ARR
  164. } from '@/common/constant.js';
  165. export default {
  166. components: {
  167. allPrice,
  168. calendar,
  169. PayTypeModel
  170. },
  171. data() {
  172. return {
  173. isShowReturnCar:false,
  174. isShowCheckOrder:false,
  175. sub_sn: "",
  176. service_list: [],
  177. isShowCalendar: false, //选择预约订单时间
  178. price: 0,
  179. modelInfo: {},
  180. isShowDetail: false,
  181. unitPrice: 0, //单价
  182. isShowToBuy: false,
  183. order_sn: '', //租赁订单号
  184. totalPrice: 0, //结算总金额
  185. };
  186. }
  187. /**
  188. * 生命周期函数--监听页面加载
  189. */
  190. ,
  191. onLoad: function(options) {
  192. if (options && options.params) {
  193. const model_info = JSON.parse(decodeURIComponent(options.params)) || {}
  194. console.log(model_info, 'model_info');
  195. this.setData({
  196. modelInfo: model_info,
  197. unitPrice: model_info.rental_setting.find(v => v.hire_duration_unit == model_info
  198. .selectType)?.hire_price,
  199. service_list: model_info.service_list || [],
  200. price: model_info.totalPrice / 100,
  201. totalPrice: model_info.select_type != 100 ? ((model_info.totalPrice + model_info.deposit) / 100).toFixed(2) : ((model_info.sell_price) / 100).toFixed(2)
  202. })
  203. }
  204. this.pick_up_time = Math.floor(new Date().getTime() / 1000)
  205. this.setData({
  206. takeCar: common.getFormattedTime()
  207. })
  208. },
  209. /**
  210. * 生命周期函数--监听页面显示
  211. */
  212. onShow: function() {},
  213. computed: {
  214. leaseUnitsResult() {
  215. const result = LEASE_TYPE_ARR.find(v => v.value == this.modelInfo.selectType);
  216. return result ? result.label : '';
  217. },
  218. leaseUnits() {
  219. const result = LEASE_TYPE_ARR.find(v => v.value == this.modelInfo.selectType);
  220. return result ? result.unit : '';
  221. },
  222. },
  223. methods: {
  224. handleValuesUpdated(e) {
  225. this.isShowCalendar = false;
  226. const timeStr = new Date(e.startDate)
  227. this.pick_up_time = Math.floor(new Date(e.startDate).getTime() / 1000)
  228. this.setData({
  229. takeCar: common.getFormattedTime(timeStr)
  230. })
  231. console.log(e, 'eeee');
  232. },
  233. tapSelectTime() {
  234. this.setData({
  235. isShowCalendar: true
  236. })
  237. },
  238. navAddress() {
  239. const {
  240. address,
  241. latitude,
  242. longitude,
  243. shop_name
  244. } = this.modelInfo
  245. uni.openLocation({
  246. latitude: latitude - 0,
  247. longitude: longitude - 0,
  248. scale: 15,
  249. name: shop_name,
  250. address: address,
  251. success: function(res) {},
  252. })
  253. },
  254. bindDetail() {
  255. this.isShowDetail = true
  256. },
  257. navToPage() {
  258. this.setData({
  259. isShowToBuy: true
  260. })
  261. },
  262. closeShow() {
  263. this.setData({
  264. isShowToBuy: false
  265. })
  266. },
  267. payToOrder(type) {
  268. const pay_type = type
  269. var from = ''
  270. if (pay_type == 1) {
  271. from = 'wx'
  272. } else if (pay_type == 2) {
  273. from = 'ali'
  274. }
  275. const hire_duration = this.modelInfo.rental_setting.find(v => v.hire_duration_unit == this.modelInfo
  276. .selectType)?.hire_duration
  277. console.log(this.modelInfo, 'test');
  278. const pData = {
  279. pay_type,
  280. car_model_id: this.modelInfo.model_id,
  281. hire_cycle: this.modelInfo.count,
  282. hire_duration_unit: this.modelInfo.selectType,
  283. hire_duration,
  284. price: this.totalPrice * 100,
  285. pick_up_time: this.pick_up_time,
  286. address: this.modelInfo.address,
  287. currency_code: 'CNY'
  288. }
  289. common.loading();
  290. if (this.modelInfo.selectType == 100) {
  291. this.loadPayBuy(pData)
  292. return
  293. }
  294. this.loadPayMethod(pData)
  295. },
  296. async loadPayBuy(pData) {
  297. let {
  298. data
  299. } = await request.postApi(config_gyq.API_FLK_ORDER_RESERVE, {
  300. pay_type: pData.pay_type,
  301. car_model_id: pData.car_model_id,
  302. price: this.modelInfo.sell_price,
  303. pick_up_time: pData.pick_up_time,
  304. currency_code: 'CNY',
  305. })
  306. uni.hideLoading();
  307. if (data.code == 200) {
  308. if (!data.data.need_pay) {
  309. common.simpleToast(this.$t('支付成功'));
  310. this.order_sn = data.data.order_sn;
  311. this.sub_sn = data.data.sub_sn;
  312. this.setData({
  313. isShowToBuy: false,
  314. isShowCheckOrder: true
  315. })
  316. }
  317. } else {
  318. common.simpleToast(data.msg);
  319. }
  320. },
  321. loadPayMethod(pData) {
  322. const me = this;
  323. http.postApi(config.API_FLK_ORDER_HIRE_MODEL, pData, function(resp) {
  324. uni.hideLoading();
  325. if (resp.data.code === 200) {
  326. if (!resp.data.data.need_pay) {
  327. common.simpleToast(me, me.$t('支付成功'));
  328. me.order_sn = resp.data.data.order_sn;
  329. me.sub_sn = resp.data.data.sub_sn;
  330. me.setData({
  331. isShowToBuy: false,
  332. isShowCheckOrder: true
  333. })
  334. }
  335. } else {
  336. common.simpleToast(me, resp.data.msg);
  337. }
  338. });
  339. },
  340. toIndexPage() {
  341. uni.switchTab({
  342. url: '/pages/index/index'
  343. })
  344. },
  345. toOrderInfo() {
  346. uni.navigateTo({
  347. url: '/pages/orderStatus/orderStatus?sub_sn=' + this.sub_sn
  348. })
  349. }
  350. }
  351. };
  352. </script>
  353. <style>
  354. @import './purchaseOrder.css';
  355. </style>