carPlan.vue 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. <template>
  2. <view class="show-more">
  3. <view class="more-info">
  4. <view class="flex-row model-title">
  5. <view style="margin-right: 24rpx;"><img style="width: 160rpx;height: 160rpx;border-radius: 16rpx;" :src="params.image" alt=""></view>
  6. <view class="car-model-detail flex-row">
  7. <!-- <priceTool :price="58" :font_size="40"/> -->
  8. <allPrice :amount="((priceAll || 0)/100)"/>
  9. <view v-if="params.overdueData && params.overdueData.money" style="align-items: baseline;" class="flex-row">
  10. <text>逾期金额:</text>
  11. <allPrice :amount="(params.overdueData.money || 0/100)"/>
  12. </view>
  13. <view v-if="type!=100" class="car-model-price-view">
  14. <text>已选择</text>
  15. <text>{{leaseUnitsResult}}</text>
  16. <text style="margin-left: 12rpx;">时长 {{count}}
  17. <text v-if="type==1">日</text>
  18. <text v-if="type==2">月</text>
  19. <text v-if="type==3">年</text>
  20. <text v-if="type==4">时</text>
  21. <text v-if="type==5">分</text>
  22. <text v-if="type==6">周</text>
  23. <text v-if="type==7">季</text>
  24. </text>
  25. <!-- <text>共计{{tools.countToDay(count,type)}}天</text> -->
  26. </view>
  27. <view class="car-model-tip">现车 随时可到店提车</view>
  28. </view>
  29. <view class="close-img">
  30. <image style="width: 24rpx;height: 24rpx;" @tap="closeShowMore"
  31. src="https://qiniu.bms16.com/FoWVlo-Nmx6wTDpsL2Rf9_BamU7L" />
  32. </view>
  33. </view>
  34. <view class="car-plan-view">
  35. <view class="car-plan-title">用车方案</view>
  36. <view class="car-plan-list-view flex-row">
  37. <view v-for="(item,index) in params.rental_setting" :key="index" @click="tapSelectType(item)" :class="['flex-row' , (type == item.hire_duration_unit ? 'car-plan-list-i' : 'car-plan-list')] "
  38. >
  39. <view :class="(type == item.hire_duration_unit ? 'car-plan-unit-i' : 'car-plan-unit') ">
  40. <text v-if="item.hire_duration_unit==1">日租</text>
  41. <text v-if="item.hire_duration_unit==2">月租</text>
  42. <text v-if="item.hire_duration_unit==3">年租</text>
  43. <text v-if="item.hire_duration_unit==4">时租</text>
  44. <text v-if="item.hire_duration_unit==5">分租</text>
  45. <text v-if="item.hire_duration_unit==6">周租</text>
  46. <text v-if="item.hire_duration_unit==7">季租</text>
  47. </view>
  48. <view :class="(type == item.hire_duration_unit ? 'car-plan-price-i' : 'car-plan-price') ">$<text style="font-size: 48rpx;margin-left: 6rpx;">{{item.hire_price/100}}</text></view>
  49. </view>
  50. <view v-if="params.sell_price != 0" @click="tapSelectType({hire_duration_unit:100,hire_price:params.sell_price})" :class="['flex-row' , (type == 100 ? 'car-plan-list-i' : 'car-plan-list') ]" >
  51. <view :class="(type == 100 ? 'car-plan-unit-i' : 'car-plan-unit') ">购买</view>
  52. <view :class="(type == 100 ? 'car-plan-price-i' : 'car-plan-price') ">$<text style="font-size: 48rpx;margin-left: 6rpx;">{{params.sell_price/100}}</text></view>
  53. </view>
  54. </view>
  55. <!-- 暂时未安排开发 -->
  56. <!-- <view class="free-num-block">
  57. <view class="flex-row flex-between" style="margin-bottom: 24rpx;">
  58. <view class="free-num-left">
  59. <img style="width: 40rpx;height: 40rpx;" src="https://qiniu.bms16.com/Fj_ifr41AqH2PijZBdOBa3SCxADg" alt="">
  60. <text style="margin-left: 16rpx;">免费换电次数</text>
  61. </view>
  62. <view class="free-num">共60次</view>
  63. </view>
  64. <view class="flex-row free-num-tip">本单可享60次免费换电数,超出后需要单独支付换电费用</view>
  65. <view class="flex-row free-num-tip">自费换电:$1/次</view>
  66. </view> -->
  67. <view v-if="type!=100" class="plan-time flex-row flex-between">
  68. <view>租车时长</view>
  69. <view class="quantity-count flex-row flex-between">
  70. <view class="total-time flex-row">
  71. <view style="font-weight: 600;margin: 0 10rpx;">{{count}}</view>
  72. <!-- <view style="font-weight: 600;margin: 0 10rpx;">{{tools.countToDay(count,isSelectStatus)}}</view> -->
  73. <text>{{leaseUnitsResult}}</text>
  74. </view>
  75. <!-- <view class="count-btn fbtn" @tap.stop.prevent="bindMinus">-</view> -->
  76. <view @tap.stop.prevent="bindMinus"><img class="count-btn fbtn"
  77. src="https://qiniu.bms16.com/Fm-SCbzVeVHgQK920bmWNvnJnL32" /></view>
  78. <input @input="bindInput" @blur="bindBlur" type="number" :value="count" />
  79. <!-- <view class="count-btn sbtn" @tap.stop.prevent="bindAdd">+</view> -->
  80. <view @tap.stop.prevent="bindAdd"><img class="count-btn sbtn"
  81. src="https://qiniu.bms16.com/FsO-2adBjkUkmk4ENuQco-aK7IyY" /></view>
  82. </view>
  83. </view>
  84. <!-- <view class="car-color-view">
  85. <view>车辆颜色</view>
  86. <view class="flex-row">
  87. <view class="car-color-list car-color-s">白色</view>
  88. <view class="car-color-list car-color-i">白色</view>
  89. <view class="car-color-list car-color-i">白色</view>
  90. <view class="car-color-list car-color-i">白色</view>
  91. </view>
  92. </view> -->
  93. </view>
  94. <view class="lift-btn-view">
  95. <view @tap="checkOrder" class="lift-btn">确认</view>
  96. </view>
  97. </view>
  98. <PayTypeModel @closeShow="isShowToBuy = false" @payToOrder="payToOrder" :free_price="Number(priceAll) + (Number(params.overdueData ? params.overdueData.money : 0) || 0)" :isShowToBuy="isShowToBuy"/>
  99. </view>
  100. </template>
  101. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  102. <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
  103. <script>
  104. import allPrice from '@/component/allPrice/allPrice';
  105. import {
  106. MAX_LIMITS,LEASE_TYPE_ARR
  107. } from '@/common/constant.js'
  108. import common from '../../common/common';
  109. var config_gyq = require('../../common/config_gyq.js');
  110. var request = require('../../common/request');
  111. import PayTypeModel from '@/component/payTypeModel/payTypeModel';
  112. export default {
  113. data() {
  114. return {
  115. orderInfo:{},
  116. isShowToBuy:false,
  117. priceAll:0,
  118. count:1,
  119. price:0,
  120. duration_unit:'',
  121. type:'',
  122. };
  123. },
  124. computed: {
  125. leaseUnitsResult() {
  126. const result = LEASE_TYPE_ARR.find(v => v.value == this.type);
  127. return result ? result.label : '';
  128. }
  129. },
  130. /**
  131. * 组件的属性列表
  132. */
  133. props: {
  134. params:{
  135. type:Object,
  136. default:{}
  137. },
  138. selectType:{
  139. type:Number,
  140. default:1
  141. },
  142. },
  143. components: {
  144. allPrice,
  145. PayTypeModel,
  146. },
  147. mounted() {
  148. this.type = this.selectType
  149. this.tapSelectType({hire_duration_unit:this.selectType,hire_price:this.params.price*100})
  150. },
  151. // created: function () {
  152. // console.log(this.params,'this.params');
  153. // this.setData({
  154. // price:this.params.price*100,
  155. // })
  156. // },
  157. /**
  158. * 组件的方法列表
  159. */
  160. methods: {
  161. async payToOrder(type){
  162. const pay_type = type
  163. var from=''
  164. if(pay_type == 1){
  165. from = 'wx'
  166. }else if(pay_type == 2){
  167. from = 'ali'
  168. }
  169. let {data} = await request.postApi(config_gyq.API_FLK_ORDER_RENEW,{
  170. ...this.orderInfo,
  171. pay_type,
  172. from
  173. })
  174. if(data.code == 200){
  175. common.simpleToast('成功!')
  176. this.isShowToBuy = false
  177. setTimeout(function() {
  178. uni.navigateBack({
  179. delta: 1
  180. });
  181. }, 800);
  182. }else{
  183. common.simpleToast(data.msg)
  184. }
  185. },
  186. tapSelectType(e){
  187. const {hire_duration_unit,hire_price} = e
  188. this.type = hire_duration_unit
  189. this.priceAll = hire_price
  190. this.price = hire_price
  191. this.count = 1
  192. },
  193. closeShowMore(){
  194. this.$emit('closeShowMore')
  195. },
  196. bindMinus() {
  197. if (this.count > 1) {
  198. this.setData({
  199. count: this.count - 1
  200. });
  201. }
  202. this.bindDuration()
  203. },
  204. bindInput(e) {
  205. const num = Number(e.detail.value)
  206. this.bindTipCount(num)
  207. this.bindDuration()
  208. },
  209. bindBlur(e) {
  210. const count = e.detail.value
  211. this.bindTipCount(count)
  212. if (count < 1) {
  213. this.setData({
  214. count: 1
  215. })
  216. }
  217. this.bindDuration()
  218. },
  219. bindAdd() {
  220. const num = this.count - 0 + 1
  221. this.bindTipCount(num)
  222. this.bindDuration()
  223. },
  224. bindTipCount(num) {
  225. const limit = MAX_LIMITS[this.isSelectStatus];
  226. if (limit && num > limit.max) {
  227. common.simpleToast(limit.message);
  228. this.setData({
  229. count: limit.max
  230. })
  231. this.blurHandle()
  232. } else {
  233. this.setData({
  234. count: num
  235. })
  236. }
  237. },
  238. blurHandle() {
  239. this.showInput = false
  240. this.$nextTick(() => {
  241. this.showInput = true
  242. })
  243. },
  244. //计算价格
  245. bindDuration() {
  246. const me = this
  247. //未有显示总价钱的地方
  248. var new_price=0
  249. console.log(me.price)
  250. if(me.type == 100){
  251. new_price=me.params.sell_price
  252. }else{
  253. new_price=Number(me.price)*Number(me.count)
  254. }
  255. this.setData({
  256. priceAll:new_price
  257. })
  258. },
  259. async orderRenewFn(){
  260. // this.overdueData
  261. console.log(this.params)
  262. let current_time = this.params.overdueData.time ? this.params.overdueData.time:parseInt(new Date().getTime() / 1000);
  263. let money = 0
  264. if(this.params.overdueData.time){
  265. money = this.params.overdueData.money ? Number(this.params.overdueData.money) : 0
  266. }
  267. let hire_duration = 0
  268. this.params.rental_setting.map(item=>{
  269. if(item.hire_duration_unit == this.type){
  270. hire_duration = item.hire_duration
  271. }
  272. })
  273. this.orderInfo={
  274. order_sn:this.params.order_sn,
  275. hire_duration,
  276. hire_cycle:this.count,
  277. hire_duration_unit:this.type,
  278. price:this.priceAll + money,
  279. current_time,
  280. currency_code:'CNY'
  281. }
  282. this.isShowToBuy = true
  283. },
  284. checkOrder(){
  285. const params={
  286. ...this.params,
  287. selectType:this.type,
  288. count:this.count,
  289. totalPrice:this.priceAll,
  290. selectUnit:this.type
  291. }
  292. if(this.params.order_sn){
  293. this.orderRenewFn()
  294. }else{
  295. uni.navigateTo({
  296. url: `/pages/purchaseOrder/purchaseOrder?params=${encodeURIComponent(JSON.stringify(params))}`,
  297. })
  298. }
  299. },
  300. }
  301. };
  302. </script>
  303. <style scoped>
  304. @import './carPlan.css';
  305. </style>