carPlan.vue 10 KB

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