Browse Source

订单模块

郭宇琦 2 weeks ago
parent
commit
5c07bf28db

+ 38 - 40
common/common.js

@@ -1,8 +1,8 @@
 /**
  * 通用函数
  */
+import i18n from '../locale/index.js';
 var config = require('./config.js');
-
 /**
  * 时间戳转为 xxxx-xx-xx xx:xx:xx 格式
  */
@@ -639,7 +639,7 @@ function maskPhoneNumber(phoneNumber) {
 
 
 function formatDistance(distanceMeters) {
-	if(!distanceMeters) return''
+	if (!distanceMeters) return ''
 	// 判断距离是否超过1000米  
 	if (distanceMeters >= 1000) {
 		// 如果超过1000米,则转换为千米并返回  
@@ -651,7 +651,7 @@ function formatDistance(distanceMeters) {
 }
 
 function formatWeight(weightMeters) {
-	if(!weightMeters) return''
+	if (!weightMeters) return ''
 	if (weightMeters >= 1000) {
 		return (weightMeters / 1000).toFixed(2) + 'kg';
 	} else {
@@ -717,22 +717,22 @@ function formatTimeDate(datetime) { // 时间戳格式化 返回x月x日 x:x
 }
 
 function getToDay(type) { //转化为yyyy-mm-dd
-	if(type === 1){
+	if (type === 1) {
 		const now = new Date();
 		const year = now.getFullYear();
 		const month = String(now.getMonth() + 1).padStart(2, '0');
-		const day = String(now.getDate()-0+1).padStart(2, '0');
+		const day = String(now.getDate() - 0 + 1).padStart(2, '0');
 		const formattedDate = `${year}-${month}-${day}`;
 		return formattedDate;
-	}else{
+	} else {
 		const now = new Date();
 		const year = now.getFullYear();
 		const month = String(now.getMonth() + 1).padStart(2, '0');
 		const day = String(now.getDate()).padStart(2, '0');
 		const formattedDate = `${year}-${month}-${day}`;
-		return formattedDate;	
+		return formattedDate;
 	}
-	
+
 }
 
 function getTimeToDay(time) { //转化为天时分
@@ -769,17 +769,18 @@ function isWithinTimeRange(startTime, endTime) {
 }
 
 // 时间戳格式化 x:x:x -> x:x
-var formatToHHMM = function (timeStr) {
-	var data=timeStr.split(':')
-   var hours = data[0];
-   var  minutes = data[1];
-   return hours+':'+minutes;
+var formatToHHMM = function(timeStr) {
+	var data = timeStr.split(':')
+	var hours = data[0];
+	var minutes = data[1];
+	return hours + ':' + minutes;
 }
 // 时间戳格式化 x:x:x -> x:x
-var hideProvinceAndCity = function (address) {
-   	var regex = /(?:[\u4e00-\u9fa5]+省|[\u4e00-\u9fa5]+市|[\u4e00-\u9fa5]+自治区|[\u4e00-\u9fa5]+特别行政区)/g;
-    return address.replace(regex, '').replace(/\s+/g, '').trim(); 
+var hideProvinceAndCity = function(address) {
+	var regex = /(?:[\u4e00-\u9fa5]+省|[\u4e00-\u9fa5]+市|[\u4e00-\u9fa5]+自治区|[\u4e00-\u9fa5]+特别行政区)/g;
+	return address.replace(regex, '').replace(/\s+/g, '').trim();
 }
+
 function calculateRemainingTime(serverTimestamp) {
 	const currentTimestamp = getCurrentTimestamp();
 	const remainingTime = serverTimestamp - currentTimestamp;
@@ -800,10 +801,10 @@ function formatTimeScan(seconds) {
 
 function getFormattedTime(time) {
 	// 获取当前时间
-	const now = time? time : new Date();
+	const now = time ? time : new Date();
 	// 加上30分钟
 	now.setMinutes(now.getMinutes() + 30);
-	
+
 	// 格式化时间
 	const month = String(now.getMonth() + 1).padStart(2, "0"); // 月份从0开始,需要加1
 	const day = String(now.getDate()).padStart(2, "0"); // 日期
@@ -812,7 +813,7 @@ function getFormattedTime(time) {
 
 	// 拼接成目标格式
 	return `${month}-${day} ${hours}:${minutes}`;
-  }
+}
 
 function countToDay(count, unit) {
 	let data = '';
@@ -835,22 +836,19 @@ function countToDay(count, unit) {
 	}
 	return data;
 }
-function callPhone(that,phone,callback = () => {}, fail = () => {}){
-	const text=that.$t(您是否要拨打电话)+phone+'?'
-	uni.showModal({
+
+async function callPhone(phone) {
+	const text = i18n.t('您是否要拨打电话' + phone + '?')
+	// const text=that.$t()+phone+'?'
+	let res = await uni.showModal({
 		content: text,
 		confirmText: '确定',
-		success: (res) => {
-			if (res.confirm) {
-				uni.makePhoneCall({
-					phoneNumber: phone,
-					success() {},
-					fail() {}
-				})
-			}
-		},
-		fail: (res) => {}
 	})
+	if(res[1].confirm){
+		uni.makePhoneCall({
+			phoneNumber: phone,
+		})
+	}
 }
 module.exports = {
 	formatTime: formatTime,
@@ -892,12 +890,12 @@ module.exports = {
 	getToDay: getToDay,
 	getTimeToDay: getTimeToDay,
 	isObjectEmpty: isObjectEmpty,
-	isWithinTimeRange:isWithinTimeRange,
-	formatToHHMM:formatToHHMM,
-	hideProvinceAndCity:hideProvinceAndCity,
-	formatTimeScan:formatTimeScan,
-	calculateRemainingTime:calculateRemainingTime,
-	countToDay:countToDay,
-	getFormattedTime:getFormattedTime,
-	callPhone:callPhone,
+	isWithinTimeRange: isWithinTimeRange,
+	formatToHHMM: formatToHHMM,
+	hideProvinceAndCity: hideProvinceAndCity,
+	formatTimeScan: formatTimeScan,
+	calculateRemainingTime: calculateRemainingTime,
+	countToDay: countToDay,
+	getFormattedTime: getFormattedTime,
+	callPhone: callPhone,
 };

+ 13 - 0
common/config_gyq.js

@@ -54,5 +54,18 @@ var config = {
 	API_FLK_CABINET_NEAR_LIST: api_web_url +'?r=flk/cabinet/near-list',
 	//忘记密码
 	API_FLK_CABINET_RESET_PASSWORD: api_web_url +'?r=flk/account/reset-password',
+	
+	//取消订单
+	API_FLK_ORDER_CANCEL_PAY: api_web_url +'?r=flk/order/cancel-pay',
+	//激活车辆(绑定设备): 
+	API_CAR_ASSIGNMENT: api_web_url +'?r=flk/car/assignment',
+	//门店设置:
+	API_FLK_INDEX_SHOP_SETTING: api_web_url +'?r=flk/index/shop-setting',
+	//申请还车: :
+	API_FLK_CAR_RETURN_CAR: api_web_url +'?r=flk/car/return-car',
+	//换电记录:
+	API_FLK_CABINET_EXCHANGE_ORDER: api_web_url +'?r=flk/cabinet/exchange-order',
+	//续租: 
+	API_FLK_ORDER_RENEW: api_web_url +'?r=flk/order/renew',
 };
 module.exports = config;

+ 10 - 2
common/constant.js

@@ -5,25 +5,33 @@ export const defaultHeadImg = `${QINIU_URL}/FpzmRTePsa2QSxemAbc-xWdzSsn1`
 
 // 租赁周期
 export const LEASE_TYPE = {
-	// 'hour': 4, // 时租
 	'day': 1, // 日租
 	'month': 2, // 月租
 	'year': 3, // 年租
+	'hour': 4, // 时租
+	'minute': 5, // 分租
+	'week': 6, // 周租
+	'quarter': 7, // 季租
 	'buy': 100, // 购买
 }
-
 export const LEASE_TYPE_ARR = [
 	{ label: '日租', value: LEASE_TYPE.day, type: 'day', unit: '天' },
 	{ label: '月租', value: LEASE_TYPE.month, type: 'month', unit: '月' },
 	{ label: '年租', value: LEASE_TYPE.year, type: 'year', unit: '年' },
+	{ label: '年租', value: LEASE_TYPE.hour, type: 'hour', unit: '时' },
+	{ label: '年租', value: LEASE_TYPE.minute, type: 'minute', unit: '分' },
+	{ label: '年租', value: LEASE_TYPE.week, type: 'week', unit: '周' },
+	{ label: '年租', value: LEASE_TYPE.quarter, type: 'quarter', unit: '季' },
 	{ label: '购买', value: LEASE_TYPE.buy, type: 'buy', unit: '买' }
 ]
 export const MAX_LIMITS = {
   4: { max: 24, message: '最多可以选择24小时' },
+  5: { max: 60, message: '最多可以选择60分钟' },
   1: { max: 30, message: '最多可以选择30天' },
   2: { max: 12, message: '最多可以选择12个月' },
   6: { max: 4, message: '最多可以选择4周' },
   7: { max: 4, message: '最多可以选择4季度' },
+  3: { max: 2, message: '最多可以选择2年' },
 };
 
 //不同appid对应不同的首页顶部导航栏字体 门店名字

+ 1 - 1
component/carPlan/carPlan.css

@@ -57,7 +57,7 @@
 	margin-bottom: 32rpx;
 }
 .car-plan-list-view{
-	overflow-x: hidden;
+	overflow-x: auto;
 	margin-bottom: 28rpx;
 }
 .car-plan-list{

+ 112 - 39
component/carPlan/carPlan.vue

@@ -5,16 +5,20 @@
 				<view style="margin-right: 24rpx;"><img style="width: 160rpx;height: 160rpx;border-radius: 16rpx;" :src="params.image" alt=""></view>
 				<view class="car-model-detail flex-row">
 					<!-- <priceTool :price="58" :font_size="40"/> -->
-					<allPrice :amount="(price/100)"/>
-					<view v-if="duration_unit!=100" class="car-model-price-view">
-						<text style="margin-right: 12rpx;">已选择</text>
+					<allPrice :amount="(priceAll/100)"/>
+					<view v-if="type!=100" class="car-model-price-view">
+						<text style="margin-right: 12rpx;">已选择{{priceAll}}</text>
 						<text>{{leaseUnitsResult}}</text>
 						<text>时长 {{count}} 
-							<text v-if="selectType==1">日</text>
-							<text v-if="selectType==2">月</text>
-							<text v-if="selectType==3">年</text>
+							<text v-if="type==1">日</text>
+							<text v-if="type==2">月</text>
+							<text v-if="type==3">年</text>
+							<text v-if="type==4">时</text>
+							<text v-if="type==5">分</text>
+							<text v-if="type==6">周</text>
+							<text v-if="type==7">季</text>
 						</text>
-						<text>共计{{tools.countToDay(count,selectType)}}天</text>
+						<text>共计{{tools.countToDay(count,type)}}天</text>
 					</view>
 					<view class="car-model-tip">现车 随时可到店提车</view>
 				</view>
@@ -26,21 +30,27 @@
 			<view class="car-plan-view">
 				<view class="car-plan-title">用车方案</view>
 				<view class="car-plan-list-view flex-row">
-					<view v-for="(item,index) in params.rental_setting" :key="index" @tap="tapSelectType" :class="['flex-row' , (selectType == item.hire_duration_unit ? 'car-plan-list-i' : 'car-plan-list')] " 
+					<view v-for="(item,index) in params.rental_setting" :key="index" @tap="tapSelectType" :class="['flex-row' , (type == item.hire_duration_unit ? 'car-plan-list-i' : 'car-plan-list')] " 
 					:data-price="item.hire_price"
 					:data-select_type="item.hire_duration_unit">
-						<view :class="(selectType == item.hire_duration_unit ? 'car-plan-unit-i' : 'car-plan-unit') ">
+					
+						<view :class="(type == item.hire_duration_unit ? 'car-plan-unit-i' : 'car-plan-unit') ">
 							<text v-if="item.hire_duration_unit==1">日租</text>
 							<text v-if="item.hire_duration_unit==2">月租</text>
 							<text v-if="item.hire_duration_unit==3">年租</text>
+							<text v-if="item.hire_duration_unit==4">时租</text>
+							<text v-if="item.hire_duration_unit==5">分租</text>
+							<text v-if="item.hire_duration_unit==6">周租</text>
+							<text v-if="item.hire_duration_unit==7">季租</text>
 						</view>
-						<view :class="(selectType == 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>
+						<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>
 					</view>
-					<view  @tap="tapSelectType" :class="['flex-row' , (selectType == 100 ? 'car-plan-list-i' : 'car-plan-list') ]" 
+					
+					<view  @tap="tapSelectType" :class="['flex-row' , (type == 100 ? 'car-plan-list-i' : 'car-plan-list') ]" 
 					:data-price="params.sell_price"
 					:data-select_type="100">
-						<view :class="(selectType == 100 ? 'car-plan-unit-i' : 'car-plan-unit') ">购买</view>
-						<view :class="(selectType == 100 ? 'car-plan-price-i' : 'car-plan-price') ">$<text style="font-size: 48rpx;margin-left: 6rpx;">{{params.sell_price/100}}</text></view>
+						<view :class="(type == 100 ? 'car-plan-unit-i' : 'car-plan-unit') ">购买</view>
+						<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>
 					</view>
 				</view>
 				<!-- 暂时未安排开发 -->
@@ -55,12 +65,12 @@
 					<view class="flex-row free-num-tip">本单可享60次免费换电数,超出后需要单独支付换电费用</view>
 					<view class="flex-row free-num-tip">自费换电:$1/次</view>
 				</view> -->
-				<view v-if="selectType!=100" class="plan-time flex-row flex-between">
+				<view v-if="type!=100" class="plan-time flex-row flex-between">
 					<view>租车时长</view>
 					<view class="quantity-count flex-row flex-between">
 						<view class="total-time flex-row">
-							<view style="font-weight: 600;margin: 0 10rpx;">{{tools.countToDay(count,selectType)}}</view>
+							<view style="font-weight: 600;margin: 0 10rpx;">{{tools.countToDay(count,type)}}</view>
 							<!-- <view style="font-weight: 600;margin: 0 10rpx;">{{tools.countToDay(count,isSelectStatus)}}</view> -->
 							<text>天</text>
 						</view>
@@ -87,23 +97,32 @@
 				<view @tap="checkOrder" class="lift-btn">确认</view>
 			</view>
 		</view>
+		
+		<PayTypeModel @closeShow="isShowToBuy = false" @payToOrder="payToOrder" :free_price="priceAll" :isShowToBuy="isShowToBuy"/>
 	</view>
 </template>
 <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
 <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
 <script>
 	import allPrice from '@/component/allPrice/allPrice';
+	
 	import {
 		MAX_LIMITS,LEASE_TYPE_ARR
 	} from '@/common/constant.js'
 	import common from '../../common/common';
+	var config_gyq = require('../../common/config_gyq.js');
+	var request = require('../../common/request');
+	import PayTypeModel from '@/component/payTypeModel/payTypeModel';
 	export default {
 		data() {
 			return {
+				orderInfo:{},
+				isShowToBuy:false,
+				priceAll:0,
 				count:1,
 				price:0,
-				duration_unit:''
-
+				duration_unit:'',
+				type:'',
 			};
 		},
 		computed: {
@@ -127,6 +146,10 @@
 		},
 		components: {
 			allPrice,
+			PayTypeModel,
+		},
+		mounted() {
+			this.type = this.selectType
 		},
 		created: function () {
 			console.log(this.params,'this.params');
@@ -138,14 +161,38 @@
 		 * 组件的方法列表
 		 */
 		methods: {
+			async payToOrder(type){
+				const pay_type = type
+				var from=''
+				if(pay_type == 1){
+					from = 'wx'
+				}else if(pay_type == 2){
+					from = 'ali'
+				}
+				let {data} = await request.postApi(config_gyq.API_FLK_ORDER_RENEW,{
+					...this.orderInfo,
+					pay_type,
+					from
+				})
+				if(data.code == 200){
+					common.simpleToast('成功!')
+					this.isShowToBuy = false
+					setTimeout(function() {
+						uni.navigateBack({
+							delta: 1
+						});
+					}, 800);
+					
+				}else{
+					common.simpleToast(data.msg)
+				}
+			},
 			tapSelectType(e){
 				const {select_type,price} = e.currentTarget.dataset
-				console.log(e,select_type,price,'selectType,price');
-				this.$emit('changeSelectType',select_type,price)
-				this.setData({
-					price,
-					count:1
-				})
+				this.type = select_type
+				this.priceAll = price
+				this.price = price
+				this.count = 1
 			},
 			closeShowMore(){
 				this.$emit('closeShowMore')
@@ -206,29 +253,55 @@
 			bindDuration() {
 				const me = this
 				//未有显示总价钱的地方
-				// var new_price=0
-				// if(me.selectType == 100){
-				// 	new_price=me.params.sell_price
-				// }else{
-				// 	new_price=me.price*me.count
-				// }
-				// console.log(me.count,me.price,new_price,'new_price');
-				// this.setData({
-				// 	price:new_price
-				// })
+				var new_price=0
+				console.log(me.price)
+				if(me.type == 100){
+					new_price=me.params.sell_price
+				}else{
+					new_price=Number(me.price)*Number(me.count)
+				}
+				this.setData({
+					priceAll:new_price
+				})
+			},
+			async orderRenewFn(){
+				let current_time = parseInt(new Date().getTime() / 1000);
+				let hire_duration = 0
+				this.params.rental_setting.map(item=>{
+					if(item.hire_duration_unit == this.type){
+						hire_duration = item.hire_duration
+					}
+				})
+				this.orderInfo={
+					order_sn:this.params.order_sn,
+					hire_duration,
+					hire_cycle:this.count,
+					hire_duration_unit:this.type,
+					price:this.priceAll,
+					current_time,
+					currency_code:'CNY'
+				}
+				
+				this.isShowToBuy = true
 				
 			},
+			
 			checkOrder(){
 				const params={
 					...this.params,
-					selectType:this.selectType,
+					selectType:this.type,
 					count:this.count,
-					totalPrice:this.price,
-					selectUnit:LEASE_TYPE_ARR.find(v => v.value == this.selectType)?.label
+					totalPrice:this.priceAll,
+					selectUnit:this.type
 				}
-				uni.navigateTo({
-					url: `/pages/purchaseOrder/purchaseOrder?params=${encodeURIComponent(JSON.stringify(params))}`,
-				})
+				if(this.params.order_sn){
+					this.orderRenewFn()
+				}else{
+					uni.navigateTo({
+						url: `/pages/purchaseOrder/purchaseOrder?params=${encodeURIComponent(JSON.stringify(params))}`,
+					})
+				}
+				
 			},
 		}
 	};

+ 2 - 2
component/payTypeModel/payTypeModel.vue

@@ -52,7 +52,7 @@
 	export default {
 		data() {
 			return {
-				payType:1
+				payType:1,
 			};
 		},
 		/**
@@ -93,7 +93,7 @@
 .modal-group {position: fixed;
 	bottom: 0;
 	left: 0;
-	z-index: 10;
+	z-index: 9999;
 	width: 100%;
 	height: 100vh;
 	background-color: rgba(0, 0, 0, 0.6);

+ 6 - 6
component/uploader/uploader.css

@@ -10,8 +10,8 @@
 }
 
 .list-item {
-	width: 218rpx;
-	height: 218rpx;
+	width: 206rpx;
+	height: 206rpx;
 	background-color: #F4F5F6;
 	border-radius: 16rpx;
 	display: flex;
@@ -23,14 +23,14 @@
 }
 
 .img-item {
-    width: 218rpx;
-    height: 218rpx;
+    width: 206rpx;
+    height: 206rpx;
     background-color: #fff;
 	border-radius: 16rpx;
 }
 .img-item-demo {
-    width: 218rpx;
-    height: 218rpx;
+    width: 206rpx;
+    height: 206rpx;
     background-color: #fff;
 	border-radius: 16rpx;
 	/* 翻转图片的颜色 */

+ 51 - 0
component/uploaders/upload.js.js

@@ -0,0 +1,51 @@
+// utils/upload.js
+const http = require('../../common/request');
+const config = require('../../common/config.js');
+
+class Upload {
+  static imgUp = [];
+  static index = 0;
+  static token = '';
+  // 获取七牛云 token
+  static async qiniuUpImg() {
+    const { data } = await http.getApi(config.API_QINIU_UP_IMG_TOKEN, {});
+    if (data.code === 200) {
+      this.token = data.data.token;
+    }
+  }
+  // 上传文件核心方法
+  static async uploadFile(tempFilePaths) {
+    if (!this.token) {
+      await this.qiniuUpImg(); 
+    }
+	
+    while (this.index < tempFilePaths.length) {
+		uni.showLoading({
+			mask:true,
+			title:`${this.index + 1}/${tempFilePaths.length}`
+		})
+      const res = await uni.uploadFile({
+        url: config.QINIU_UPLOAD_SITE,
+        filePath: tempFilePaths[this.index],
+        name: 'file',
+        formData: { token: this.token },
+      });
+
+      if (res[1]) {
+        const rtDataObj = JSON.parse(res[1].data);
+        const img = {url:config.QINIU_SITE + rtDataObj.key,title:""};
+        this.imgUp.push(img);
+        this.index += 1;
+      }else{
+		  uni.hideLoading()
+	  }
+    }
+	uni.hideLoading()
+    const result = [...this.imgUp];
+    this.imgUp = [];
+    this.index = 0;
+    return result;
+  }
+}
+
+export default Upload; // 确保导出类

+ 90 - 0
component/uploaders/uploaders.vue

@@ -0,0 +1,90 @@
+<template>
+	<view class="container">
+		<view class="list-group">
+			<view class="list-item" @longpress="bindDelImage" :data-idx="index"
+				v-for="(item, index) in imgList" :key="item.unique">
+				<!-- <image  class="img-item-demo" :src="item.url"></image> -->
+				<image  class="img-item" :src="item.url" mode="aspectFill"></image>
+				<!-- <view class="img_text">{{ item.title? item.title : '车辆照片'}}</view> -->
+			</view>
+			<view v-if="imgList.length < max" class="list-item" @tap="bindUpImg">
+				<view class="img_text">车辆照片</view>
+				<view class="empity-item">+</view>
+			</view>
+		</view>
+
+	</view>
+</template>
+
+<script>
+import upload from './upload.js';
+	export default {
+		props: {
+			car_info: {
+				type: Array,
+				required: true //必填项
+			},
+			max:{
+				type: Number,
+				default:1
+			}
+		},
+		data() {
+			return {
+				imgList:[]
+			}
+		}
+		/**
+		 * 生命周期函数--监听页面加载
+		 */
+		,
+		mounted() {
+			this.imgList = this.car_info
+		},
+		/**
+		 * 生命周期函数--监听页面显示
+		 */
+		onShow: function() {
+
+		},
+		methods: {
+			// 上传
+			async bindUpImg(e) {
+				let res = await uni.chooseImage({
+					count: this.max - this.imgList.length,
+					sourceType: ['camera'],
+				})
+				if(res[1]){
+					const imgList = res[1].tempFilePaths
+					let data = await upload.uploadFile(imgList)
+					this.imgList = this.imgList.concat(data)
+					this.updateImages(data)
+				}
+			},	
+			
+            // 删除图片
+			async bindDelImage(e) {
+				const index = e.currentTarget.dataset.idx
+				// 样例图不删除
+				if (this.imgList[index].url == '') return false
+				let res = await uni.showModal({
+					title: '提示',
+					content: '你确定要删除吗?',
+					showCancel: true,
+				})
+				if (res[1].confirm) {
+					this.imgList.splice(index,1)
+					this.updateImages(this.imgList);
+				}
+			},
+			updateImages(imgList) {
+				this.$emit('update-car-images', imgList);
+			}
+
+		}
+	};
+</script>
+
+<style>
+	@import '../uploader/uploader.css';
+</style>

+ 23 - 10
pages/activation/activation.css

@@ -1,24 +1,33 @@
 .container-view {
-	height: 100vh;
-	background-color: #ffffff;
+	min-height: 100vh;
 }
 
 .return-info {
-	padding: 40rpx 32rpx 32rpx;
+	padding: 32rpx;
 	margin-bottom: 16rpx;
+	width: 710rpx;
+	margin: auto;
+	background-color: #ffffff;
+	border-radius: 32rpx;
+	margin-top: 20rpx;
 }
-
-.return-info img {
+.return-info .h5{
+	font-size: 32rpx;
+	color: #333;
+	font-weight: bold;
+	margin-bottom: 20rpx;
+}
+.return-info .img {
 	width: 125rpx;
 	height: 125rpx;
 	border-radius: 16rpx;
+	overflow: hidden;
 }
 
 .return-top > view:nth-of-type(1) {
-	color: #2A3A5A;
-	font-size: 36rpx;
+	color: #333;
+	font-size: 28rpx;
 	margin-bottom: 16rpx;
-	font-weight: bold;
 }
 
 .return-top > view:nth-of-type(2) {
@@ -34,11 +43,15 @@
 .pictures-info {
 	background-color: #ffffff;
 	padding: 40rpx 32rpx 32rpx;
+	width: 710rpx;
+	margin: auto;
+	margin-top: 20rpx;
+	border-radius: 32rpx;
 }
 
 .pictures-info > view:nth-of-type(1) {
-	color: #2A3A5A;
-	font-size: 40rpx;
+	color: #333;
+	font-size: 32rpx;
 	margin-bottom: 20rpx;
 }
 

+ 135 - 20
pages/activation/activation.vue

@@ -1,39 +1,72 @@
 <template>
 	<view class="container-view">
-		<view class="return-info flex-row flex-between">
-			<view class="return-top">
-				<view>车牌:{{plate_number}}</view>
+		<view class="return-info">
+			<view class="h5">车辆信息</view>
+			<view class="return-top  flex-row flex-between">
+				<view>车辆编号:{{car_sn}}</view>
+			</view>
+			<view class="return-top  flex-row flex-between">
+				<view>车辆名称:{{carInfoData.car_name}}</view>
+			</view>
+			<view class="return-top  flex-row flex-between">
+				<view>车型:{{carInfoData.model_name}}</view>
+			</view>
+			<view class="return-top  flex-row flex-between">
+				<view>续航:{{carInfoData.endurance}}m</view>
+			</view>
+			<view class="return-top  flex-row flex-between">
+				<view>重量:{{carInfoData.weight}}kg</view>
+			</view>
+			<view class="return-top  flex-row ">
+				<view>照片:</view>
+				<image class="img" :src="carInfoData.model_images" mode="aspectFill"></image>
+			</view>
+		</view>
+		<view class="return-info">
+			<view class="h5">门店信息</view>
+			<view class="return-top  flex-row flex-between">
+				<view>门店名称:{{shopInfo.shop_name}}</view>
+			</view>
+			<view class="return-top  flex-row flex-between">
+				<view>门店地址:{{shopInfo.address}}</view>
 			</view>
-
-			<view><img :src="model_image" /></view>
 		</view>
 		<view class="pictures-info">
 			<view>车辆照片</view>
 			<!-- <view>这里是关于激活车辆照片的文案描述,这里是关于激活车辆照片的文案描述</view> -->
-			<uploader :car_info="car_imgs" @update-car-images="handleCarImagesUpdate"></uploader>
-			<view @tap="submitEnabled" class="pictures-btn">激活车辆</view>
+			<uploaders :max="shopList.flk_hire_car_img_num" :car_info="car_imgs" @update-car-images="handleCarImagesUpdate"></uploaders>
+			<view v-if="isReturnCar" @tap="submitReturn" class="pictures-btn">归还车辆</view>
+			<view v-else @tap="submitEnabled" class="pictures-btn">激活车辆</view>
 		</view>
 	</view>
 </template>
 
 <script>
-	import uploader from '@/component/uploader/uploader';
+	import uploaders from '@/component/uploaders/uploaders';
 	const http = require('@/common/http.js');
+	const request = require('../../common/request');
 	const config = require('@/common/config.js');
+	const config_gyq = require('@/common/config_gyq.js');
 	const common = require('@/common/common.js');
 	export default {
 		components: {
-			uploader
+			uploaders
 		},
 		data() {
 			return {
+				myLocation:{},
+				shopInfo:{},
+				isReturnCar:"",
+				model_id:"",
+				car_sn:"",
+				shopList:{},
+				carInfoData:{},
 				carInfo: {},
-				plate_number: '013657142736',
 				sub_sn: '',
 				model_image: '3',
 				car_model: '',
 				return_imgs: [],
-				car_imgs: [{img_url: ''}],
+				car_imgs: [],
 				model_image_list: ''
 			};
 		},
@@ -42,9 +75,22 @@
 		 */
 		onLoad: function(options) {
 			console.log(options,'options');
+			this.isReturnCar = options.isReturnCar
+			if(options.isReturnCar){
+				uni.setNavigationBarTitle({
+					title:'归还车辆'
+				})
+				this.shopInfoFn()
+			}
 			this.sub_sn =  options.sub_sn || ''
+			this.model_id =  options.model_id || ''
+			this.car_sn =  options.car_sn || ''
+			this.carDetFn()
+			this.shopSettingFn()
+			
+			
 		},
-
+		// API_FLK_CAR_DETAIL
 		/**
 		 * 生命周期函数--监听页面显示
 		 */
@@ -53,6 +99,79 @@
 		onUnload: function () {
 		},
 		methods: {
+			async locationFn() {
+				let res = await uni.getLocation()
+				if (res[1]) {
+					this.myLocation = {
+						latitude: res[1].latitude,
+						longitude: res[1].longitude,
+					}
+					this.shopInfoFn()
+				}
+			},
+			//还车
+			async submitReturn(){
+				const price = 0
+				let milliseconds = new Date().getTime();
+				const current_time = parseInt(milliseconds / 1000);
+				const _image_list = this.car_imgs.map(item => item.img_url)
+				if (_image_list.length < 1) return common.simpleToast('请上传车辆照片')
+				let {data} = await request.postApi(config_gyq.API_FLK_CAR_RETURN_CAR,{
+					latitude: this.myLocation.latitude,
+					longitude: this.myLocation.longitude,
+					shop_id:this.shopInfo.id,
+					car_sn:this.car_sn,
+					image_list:_image_list.join(','),
+					pay_type:0,
+					price,
+					current_time
+				})
+				if(data.code == 200){
+					common.simpleToast('还车成功!')
+					setTimeout(()=> {
+						uni.switchTab({
+							url: `/pages/index/index?plate_number=${this.car_sn}`,
+						});
+					}, 800)
+				}else{
+					common.simpleToast(resp.data.msg)
+				}
+			},
+			async shopInfoFn(){
+				let res = await uni.getLocation()
+				let {data} = await request.postApi(config.API_NEAR_SHOP_LIST,
+				{
+					limit:1,
+					latitude: this.myLocation.latitude,
+					longitude: this.myLocation.longitude,
+				}
+				)
+				if(data.code == 200){
+					if(data.data.list.length > 0){
+						this.shopInfo = data.data.list[0]
+					}else{
+						common.simpleToast('未获取到门店位置!')
+					}
+				}else{
+					common.simpleToast(data.msg)
+				}
+			},
+			async shopSettingFn(){
+				let {data} = await request.postApi(config_gyq.API_FLK_INDEX_SHOP_SETTING,{model_id:this.model_id})
+				if(data.code == 200){
+					this.shopList = data.data
+				}else{
+					common.simpleToast(data.msg)
+				}
+			},
+			async carDetFn(){
+				let {data} = await request.postApi(config.API_FLK_CAR_DETAIL,{car_sn:this.car_sn})
+				if(data.code == 200){
+					this.carInfoData = data.data
+				}else{
+					common.simpleToast(data.msg)
+				}
+			},
 			handleCarImagesUpdate(updatedImages) {
 				// 这里会接收到子组件传来的更新后的图片URL数组
 				this.car_imgs = updatedImages
@@ -61,22 +180,18 @@
 			submitEnabled() {
 				const me = this
 				const _image_list = this.car_imgs.map(item => item.img_url)
-				if (_image_list.includes('' || "")) return common.simpleToast('请上传车辆照片')
+				if (_image_list.length < 1) return common.simpleToast('请上传车辆照片')
 				const pData = {
-					car_sn: this.plate_number,
+					car_sn: this.car_sn,
 					sub_sn: this.sub_sn,
-					image_list: _image_list.join(', ')
+					image_list: _image_list.join(',')
 				}
 				http.postApi(config.API_FLK_CAR_ASSIGNMENT, pData, (resp) => {
 					if (resp.data.code === 200) {
 						common.simpleToast('车辆激活成功')
 						setTimeout(function() {
-							me.isCustomJump = false
 							uni.switchTab({
-								url: `/pages/index/index?plate_number=${me.plate_number}`,
-								success: function(res) {},
-								fail: function(res) {},
-								complete: function(res) {}
+								url: `/pages/index/index?plate_number=${me.car_sn}`,
 							});
 						}, 800)
 					} else {

+ 141 - 23
pages/batteryRecord/batteryRecord.vue

@@ -6,43 +6,161 @@
 					src="https://qiniu.bms16.com/Fqs6TrEmcdT7QNEdKWs9Hir2cacO" alt="">
 			</view>
 		</view>
-		
+		<view v-for="(item,index) of list" :key="index" class="batteryList">
+			<view class="header">
+				<view v-if="item.status == 1" class="h5">开始换电</view>
+				<view v-if="item.status == 2" class="h5">换电中</view>
+				<view v-if="item.status == 3" class="h5">换电成功</view>
+				<view v-if="item.status == 4" class="h5">换电失败</view>
+				<view v-if="item.status == 0" class="h5">未知</view>
+				<view class="time">{{item.ctime}}</view>
+			</view>
+			<view class="dl">
+				<view class="dt">换电单号</view>
+				<view class="dd">{{item.order_sn}}</view>
+			</view>
+			<view class="dl">
+				<view class="dt">归还电池</view>
+				<view class="dd">{{item.btn_battery}}</view>
+			</view>
+			<view class="dl">
+				<view class="dt">借出电池</view>
+				<view class="dd">{{item.bor_battery}}</view>
+			</view>
+			<view class="dl">
+				<view class="dt">换电类型</view>
+				<view v-if="item.type == 0" class="dd">机柜换电</view>
+				<view v-if="item.type == 1" class="dd">门店换电</view>
+			</view>
+			<view class="dl">
+				<view class="dt">电柜名称</view>
+				<view class="dd">{{item.dev_name}}</view>
+			</view>
+			<image class="top" src="https://qiniu.bms16.com/FpVjOP5pZY1gXcCcS3TwI0GkywEe" mode=""></image>
+		</view>
 	</view>
 </template>
 
 <script>
+	import dayjs from 'dayjs'
+	import duration from 'dayjs/plugin/duration'
+	dayjs.extend(duration);
+	var config_gyq = require('../../common/config_gyq.js');
+	var request = require('../../common/request');
 	export default {
 		data() {
 			return {
-
+				car_sn: "",
+				list: []
 			}
 		},
+		onLoad() {
+			this.car_sn = uni.getStorageSync('car_info').car_sn
+			this.listFn()
+		},
 		methods: {
+			async listFn() {
+				let {
+					data
+				} = await request.postApi(config_gyq.API_FLK_CABINET_EXCHANGE_ORDER, {
+					car_sn: this.car_sn
+				})
+				if (data.code == 200) {
+					this.list = data.data.list
+					this.list.btn_battery = data.data.list.btn_battery ? data.data.list.btn_battery.join(',') : ''
+					this.list.bor_battery = data.data.list.bor_battery ? data.data.list.bor_battery.join(',') : ''
+					this.list.ctime = dayjs(data.data.list.ctime * 1000).format('YYYY-MM-DD')
+					console.log(this.list.ctime)
+				}
 
+			}
 		}
 	}
 </script>
 
 <style scoped lang="scss">
-.order-type-view{
-	padding: 32rpx;
-	height: 96rpx;
-	margin-bottom: 20rpx;
-	background: #FFFFFF;
-	align-items: center;
-}
-.car-model-list{
-	position: relative;
-	font-family: PingFangSC, PingFang SC;
-	font-weight: 600;
-	font-size: 40rpx;
-	color: #060809;
-}
-.right-corner-icon{
-	width: 14rpx;
-	height: 14rpx;
-	position: absolute;
-	bottom: 9rpx;
-	right: -22rpx;
-}
+	.batteryList {
+		width: 698rpx;
+		background: #FFFFFF;
+		border-radius: 32rpx;
+		padding: 32rpx;
+		margin: auto;
+		margin-top: 20rpx;
+		position: relative;
+
+		.top {
+			position: absolute;
+			right: 30rpx;
+			bottom: 30rpx;
+			width: 40rpx;
+			height: 40rpx;
+		}
+
+		.dl {
+			display: flex;
+			align-items: center;
+			margin-top: 30rpx;
+
+			.dt {
+				font-family: PingFangSC, PingFang SC;
+				font-size: 28rpx;
+				color: #9FA7B7;
+				padding-right: 30rpx;
+			}
+
+			.dd {
+				font-family: Futura, Futura;
+				font-weight: 500;
+				font-size: 30rpx;
+				color: #060809;
+			}
+		}
+
+		.header {
+			display: flex;
+			justify-content: space-between;
+			align-items: center;
+			font-family: PingFangSC, PingFang SC;
+			font-weight: bold;
+			border-bottom: 2rpx solid #F4F5F6;
+			padding-bottom: 30rpx;
+
+			.h5 {
+				font-size: 36rpx;
+				color: #060809;
+			}
+
+			.time {
+				font-family: Futura, Futura;
+				font-weight: 500;
+				font-size: 34rpx;
+				color: #5E6F90;
+				font-style: normal;
+			}
+		}
+	}
+
+	.order-type-view {
+		padding: 32rpx;
+		height: 96rpx;
+		margin-bottom: 20rpx;
+		background: #FFFFFF;
+		align-items: center;
+	}
+
+	.car-model-list {
+		position: relative;
+		font-family: PingFangSC, PingFang SC;
+		font-weight: 600;
+		font-size: 40rpx;
+		color: #060809;
+	}
+
+	.right-corner-icon {
+		width: 14rpx;
+		height: 14rpx;
+		position: absolute;
+		bottom: 9rpx;
+		right: -22rpx;
+	}
 </style>

+ 2 - 0
pages/carDetail/carDetail.vue

@@ -201,6 +201,8 @@
 					}
 				})
 			},
+			
+			
 			tapSelectType(e) {
 				const {select_type,price} = e.currentTarget.dataset
 				console.log(select_type,price,'select_type,price');

+ 19 - 8
pages/order/order.vue

@@ -57,13 +57,14 @@
 					<block v-if="selectOrderType == 1">
 						<view class="item-label-view flex-row">
 							<view class="item-label">下单时间</view>
-							<view class="item-value">{{ tools.formatTime(item.pay_time) }}</view>
+							<view class="item-value">{{ tools.formatTime(item.ctime) }}</view>
 						</view>
-						<view class="item-label-view flex-row">
+						<view v-if="item.hire_end_time" class="item-label-view flex-row">
 							<view class="item-label">有效期至</view>
 							<view class="item-value">{{ tools.formatTime(item.hire_end_time) }}</view>
 						</view>
-						<view class="item-label-view flex-row">
+						
+						<view v-if="item.hire_duration_time" class="item-label-view flex-row">
 							<view class="item-label">有效时长</view>
 							<view class="item-value">
 								{{ item.hire_duration_time.day > 0 ? item.hire_duration_time.day : '' }}<text
@@ -103,6 +104,7 @@
 						</view>
 						
 					</block>
+					
 					<view v-if="selectOrderType==1" class="item-label-view flex-row">
 						<view class="item-label">订单类型</view>
 						<view class="item-value">{{ item.order_type==3?'购车':'租车' }}</view>
@@ -116,8 +118,8 @@
 						<view class="item-value">套餐金额$ <text class="money-style">{{(item.package_money / 100).toFixed(2)}}</text></view>
 					</view>
 					<view v-if="selectOrderType==1" class="flex-row button-config-view">
-						<view class="order-money">订单金额 $ 5.0</view>
-						<view @tap="activateCar" :data-sub_sn="item.sub_sn" class="activation-btn">激活车辆</view>
+						<view class="order-money">订单金额 $ {{(item.money / 100).toFixed(2)}}</view>
+						<view v-if="item.order_status == 2" class="activation-btn">激活车辆</view>
 					</view>
 				</view>
 			</view>
@@ -288,10 +290,19 @@
 					complete: function(res) {},
 				})
 			},
-			activateCar(e) {
-				const sub_sn = e.currentTarget.dataset.sub_sn
+			async activateCar(e) {
+				let car_sn = e.currentTarget.dataset.car_sn || ''
+				let model_id = e.currentTarget.dataset.model_id || ''
+				if(!car_sn){
+					let res = await uni.scanCode({
+						onlyFromCamera: true,
+						scanType: [],
+					});
+					if(res[0]) return
+					car_sn = res[1].result
+				}
 				uni.navigateTo({
-					url: '/pages/activation/activation?sub_sn=' + sub_sn
+					url:`/pages/activation/activation?model_id=${this.orderInfo.model_id}&sub_sn=${this.sub_sn}&car_sn=${car_sn}`
 				})
 				// uni.scanCode({
 				// 			onlyFromCamera: true,

+ 568 - 464
pages/orderStatus/orderStatus.vue

@@ -11,7 +11,8 @@
 					<view v-else-if="orderInfo.pay_status == 6">线下审核拒绝</view>
 				</view>
 				<view v-if="orderInfo.order_status == 1">
-					{{orderInfo.return_type == 1?('请于'+tools.formatTimeSecond(orderInfo.hire_begin_time)+'到门店取车'):('将于'+tools.formatTimeSecond(orderInfo.hire_begin_time)+'送车上门')}}
+					<!-- {{('请于'+tools.formatTimeSecond(orderInfo.hire_begin_time)+'到门店取车')}} -->
+					待取车
 				</view>
 				<view v-else-if="orderInfo.order_status == 2">请上传车辆图片激活车辆</view>
 				<view v-else-if="orderInfo.order_status == 3" class="blue-text">使用中...</view>
@@ -21,6 +22,7 @@
 				<view v-else-if="orderInfo.order_status == 7">已完成</view>
 				<view v-else-if="orderInfo.order_status == 8||orderInfo.order_status == 9">已取消</view>
 			</view>
+			
 			<view class="time-money">
 				<view class="flex-row flex-between">
 					<view class="money-item">
@@ -79,7 +81,8 @@
 					<view class="sn-content flex-row flex-between">
 						<view class="sn-title">租车押金</view>
 						<view class="sn-text"><text class="grey-text">订单结束后随时退</text> $
-							{{tools.toFix(orderInfo.deposit/1000)}}</view>
+							{{tools.toFix(orderInfo.deposit/1000)}}
+						</view>
 					</view>
 				</view>
 			</view>
@@ -95,10 +98,10 @@
 					<view class="store-name">{{orderInfo.shop_name}}</view>
 					<view class="store-name-address">{{orderInfo.address}}</view>
 					<view class="flex-row flex-between align-center">
-						<view class="flex-row time-style align-center">
-							<img style="width: 40rpx;height: 40rpx;"
+						<view  class="flex-row time-style align-center">
+							<img v-if="orderInfo.work_begin_time && orderInfo.work_end_time" style="width: 40rpx;height: 40rpx;"
 								src="https://qiniu.bms16.com/Fp-G1pdXxnTV-G3qFbgS453AuqcU" alt="">
-							<text>10:00-22:00</text>
+							<text v-if="orderInfo.work_begin_time && orderInfo.work_end_time">{{orderInfo.work_begin_time}}-{{orderInfo.work_end_time}}</text>
 						</view>
 						<img @click="navToCabinet" style="width: 112rpx;height: 64rpx;"
 							src="https://qiniu.bms16.com/Fts38M35doVjK09GfOza5qD-wwkK" alt="">
@@ -134,21 +137,22 @@
 				</view> -->
 			<!-- </view> -->
 		</view>
-		
+
 		<view v-if="orderInfo.hire_begin_time!=0&&orderInfo.hire_end_time!=0" class="return-info">
 			<view class="return-top flex-row flex-between">
 				<view>取还时间</view>
 				<view>
-					共3天{{orderInfo.hire_return_time.day > 0 ? orderInfo.hire_return_time.day :'' }}<text
+					<!-- 共3天{{orderInfo.hire_return_time.day > 0 ? orderInfo.hire_return_time.day :'' }}<text
 						v-if="orderInfo.hire_return_time.day>0">日</text>{{orderInfo.hire_return_time.hour > 0 ? orderInfo.hire_return_time.hour :'' }}<text
 						v-if="orderInfo.hire_return_time.hour>0">小时</text>{{orderInfo.hire_return_time.minute > 0 ? orderInfo.hire_return_time.minute :'' }}<text
-						v-if="orderInfo.hire_return_time.minute>0">分</text>
+						v-if="orderInfo.hire_return_time.minute>0">分</text> -->
+						共{{hireDurationUnitsFn(orderInfo.total_hire_time,orderInfo.hire_duration_unit)}}
 				</view>
 			</view>
 			<view class="return-bottom flex-row">
-				<view>3.8-20:00</view>
+				<view>{{orderInfo.hire_begin_time}}</view>
 				<img src="https://qiniu.bms16.com/FoXmBbj7YGWmjyeuVEY35nzieqnx" />
-				<view>3.8-20:00</view>
+				<view>{{orderInfo.hire_end_time}}</view>
 				<!-- <view>{{tools.formatTimeDate(orderInfo.hire_begin_time)}}</view>
 				<img src="https://qiniu.bms16.com/FoXmBbj7YGWmjyeuVEY35nzieqnx" />
 				<view>{{tools.formatTimeDate(orderInfo.hire_end_time)}}</view> -->
@@ -172,11 +176,17 @@
 		</view>
 		<!-- 考虑为空的情况 -->
 		<view class="payment-info flex-row flex-between">
+			<view v-if="orderInfo.order_status == 1 || orderInfo.pay_status == 5" class="cancel" @tap="clickCancel">结束订单</view>
 			<view v-if="orderInfo.order_status == 1" class="flex-row"> <!-- 待取车 -->
-				<view class="cancel" @tap="clickCancel">结束订单</view>
 				<view @tap="callStorePhone" class="deposit-btn w_224">联系门店</view>
 				<view @tap="navToScan" class="sesame-btn w_288">扫码绑定</view>
 			</view>
+			
+			<view v-if="orderInfo.order_status == 2" class="flex-row"> <!-- 待取车 -->
+				<view @tap="callStorePhone" class="deposit-btn w_224">联系门店</view>
+				<view @tap="navToScan" class="sesame-btn w_288">去上传</view>
+			</view>
+			
 			<view v-else-if="orderInfo.order_status == 3||orderInfo.order_status == 4" class="flex-row"> <!-- 使用中 -->
 				<view @tap="callStorePhone" class="cancel">联系门店</view>
 				<view @tap="tapReturnCar" class="deposit-btn w_254">到店还车</view>
@@ -214,6 +224,9 @@
 		</view>
 		<returnCar :isShowReturnCar="isShowReturnCar" @closeShowReturnCarBtn="()=>isShowReturnCar=false"
 			@navStoreBtn="navStoreBtn" @immediatelyReturnBtn="immediatelyReturnBtn" />
+			
+		<carPlan @payToOrder='payReturn' v-if="showCarPlan" @changeSelectType="changeSelectType" @closeShowMore="showCarPlan = false" :params="params" :selectType="selectType"/>
+		
 		<PayTypeModel @closeShow="()=>isShowToBuy=false" @payToOrder="payToOrder" :free_price="totalPrice"
 			:isShowToBuy="isShowToBuy" />
 	</view>
@@ -221,23 +234,35 @@
 <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
 <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
 <script>
+	var config_gyq = require('../../common/config_gyq.js');
 	var config = require('../../common/config.js');
+	var request = require('../../common/request');
 	var common = require('../../common/common.js');
 	var http = require('../../common/http.js');
 	var storage = require('../../common/storage.js');
 	var user = require('../../common/user.js');
+	// 
+	import {getRemainingTime} from '@/utils/util';
 	var appWhiteListFilter = require('../../common/appWhiteListFilter.js');
 	import allPrice from '@/component/allPrice/allPrice';
 	import ReturnCar from '@/component/returnCar/returnCar';
+	import carPlan from '@/component/carPlan/carPlan';
 	import PayTypeModel from '@/component/payTypeModel/payTypeModel';
+	import dayjs from 'dayjs'
+	import duration from 'dayjs/plugin/duration'
+	dayjs.extend(duration);
 	export default {
 		components: {
 			allPrice,
 			ReturnCar,
-			PayTypeModel
+			PayTypeModel,
+			carPlan
 		},
 		data() {
 			return {
+				select_type:'',
+				car_detail:{},
+				showCarPlan:false,
 				return_imgs: {},
 				charge_standard: {},
 				isShowCancel: false,
@@ -277,6 +302,54 @@
 		computed: {},
 
 		methods: {
+			
+			async loadCarInfo(model_id) {
+				const me = this
+				http.postApi(config.API_FLK_INDEX_CAR_MODEL_DETAIL, {
+					model_id,
+				}, (resp) => {
+					if (resp.data.code === 200) {
+						const pData={
+							...this.car_detail,
+							price:this.price
+						}
+						me.setData({
+							car_detail:resp.data.data,
+							params:{
+								order_sn:this.orderInfo.order_sn,
+								...resp.data.data,
+								price:(resp.data.data.rental_setting[0].hire_price/100).toFixed(2)
+							}
+						})
+						console.log('车辆信息')
+						console.log(resp.data.data)
+					} else {
+						common.simpleToast(resp.data.msg);
+					}
+				})
+			},
+			
+			changeSelectType(select_type,price){
+				this.setData({
+					selectType: select_type,
+					price:(price/100).toFixed(2)
+				})
+			},
+			async navToScan(){
+				let car_sn = this.orderInfo.car_sn || ''
+				if(!car_sn){
+					let res = await uni.scanCode({
+						onlyFromCamera: true,
+						scanType: [],
+					});
+					if(res[0]) return
+					car_sn = res[1].result
+				}
+				uni.navigateTo({
+					url:`/pages/activation/activation?model_id=${this.orderInfo.model_id}&sub_sn=${this.sub_sn}&car_sn=${car_sn}`
+				})
+				// let {data} = await request.postApi(config.API_CAR_ASSIGNMENT,{sub_sn:this.sub_sn,car_sn:res[1].result})
+			},
 
 			navToCabinet() {
 				const {
@@ -294,492 +367,523 @@
 					address: address,
 					success: function(res) {}
 				});
-				},
-				hireDurationUnitFn(type) {
-						if (type == 1) {
-							return '天'
-						} else if (type == 2) {
-							return '月'
-						} else if (type == 3) {
-							return '年'
-						} else if (type == 4) {
-							return '小时'
-						} else if (type == 5) {
-							return '分钟'
-						} else if (type == 6) {
-							return '周'
-						} else if (type == 7) {
-							return '季'
-						}
-					},
-
-					async bindOrderInfo() {
-							let res = await uni.getLocation()
-							const me = this
-							http.postApi(config.API_FLK_ORDER_INFO, {
-								sub_sn: me.sub_sn,
-								latitude: res[1].latitude,
-								longitude: res[1].longitude,
-							}, (resp) => {
-								if (resp.data.code === 200) {
-									me.orderInfo = resp.data.data.order_info
+			},
+			
+			hireDurationUnitFn(type) {
+				if (type == 1) {
+					return '天'
+				} else if (type == 2) {
+					return '月'
+				} else if (type == 3) {
+					return '年'
+				} else if (type == 4) {
+					return '小时'
+				} else if (type == 5) {
+					return '分钟'
+				} else if (type == 6) {
+					return '周'
+				} else if (type == 7) {
+					return '季'
+				}
+			},
+			hireDurationUnitsFn(time,type) {
+				
+				if (type == 1) {
+					return Math.ceil(time / 60 / 60 / 24) + '天'
+				} else if (type == 2) {
+					return Math.ceil(time / 60 / 60 / 24 / 30) +  '月'
+				} else if (type == 3) {
+					return Math.ceil(time / 60 / 60 / 24 / 30 / 365) +  '年'
+				} else if (type == 4) {
+					return Math.ceil(time / 60 / 60) +  '小时'
+				} else if (type == 5) {
+					return Math.ceil(time / 60)  +  '分钟'
+				} else if (type == 6) {
+					return Math.ceil(time / 60 / 60 / 24 / 7) +  '周'
+				} else if (type == 7) {
+					return Math.ceil(time / 60 / 60 / 24 / 30 / 3) +  '季'
+				}
+			},
 
-									let distance = common.getFlatternDistance(res[1].longitude, res[1].latitude, me
-										.orderInfo.longitude, me.orderInfo.latitude)
-									resp.data.data.order_info.distance = distance
-									// 取还时间展示
-									me.orderInfo.hire_return_time = common.getTimeToDay(Math.ceil(me.orderInfo
-										.hire_end_time - me.orderInfo.hire_begin_time) / 60)
-									// 剩余租期判断
-									if ((me.orderInfo.hire_type == 2 && me.orderInfo.order_status == 2) || me
-										.orderInfo.order_status == 3) {
-										me.orderInfo.hire_duration_time = common.getTimeToDay(Math.ceil(me
-												.orderInfo.hire_end_time - (Math.floor(new Date()) / 1000)) /
-											60)
-									} else {
-										if (me.orderInfo.order_status == 4) {
-											me.orderInfo.hire_duration_time = common.getTimeToDay(Math.ceil(Math
-													.floor(new Date()) / 1000 - me.orderInfo.hire_end_time) /
-												60)
-										} else {
-											me.orderInfo.hire_duration_time = me.orderInfo.hire_return_time
-										}
-									}
-								} else {
-									// 默认返回上一个页面再提示报错
-									uni.navigateBack({
-										delta: 1
-									})
-									common.simpleToast(resp.data.msg)
-								}
-							})
-						},
-						navStoreBtn() {
-							const {
-								latitude,
-								longitude,
-								address,
-								shop_name
-							} = this.orderInfo
-							uni.openLocation({
-								latitude: latitude - 0,
-								longitude: longitude - 0,
-								scale: 15,
-								name: shop_name,
-								address: address,
-								success: function(res) {}
-							});
-						},
-						tapReturnCar() {
-							this.setData({
-								isShowReturnCar: true
-							})
-						},
-						immediatelyReturnBtn() {
-							//到店还车  判断逾期状态 如果逾期要交逾期费用 跳转到上传车辆图片再支付逾期费用还车
-							const isOverdue = this.orderInfo.order_status == 4
-							const {
-								car_sn,
-								shop_id,
-								overdue_money
-							} = this.orderInfo
-							const returnCarParams = {
-								car_sn,
-								shop_id,
-								overdue_money,
-								isReturnCar: true,
-							}
-							if (isOverdue) {
-								this.setData({
-									totalPrice: overdue_money,
-									isShowToBuy: true
-								})
+			async bindOrderInfo() {
+				let res = await uni.getLocation()
+				const me = this
+				http.postApi(config.API_FLK_ORDER_INFO, {
+					sub_sn: me.sub_sn,
+					latitude: res[1].latitude,
+					longitude: res[1].longitude,
+				}, (resp) => {
+					if (resp.data.code === 200) {
+						me.orderInfo = resp.data.data.order_info
+						// 
+						if(resp.data.data.order_info.model_id){
+							me.loadCarInfo(resp.data.data.order_info.model_id)
+						}
+						let distance = common.getFlatternDistance(res[1].longitude, res[1].latitude, me
+							.orderInfo.longitude, me.orderInfo.latitude)
+						resp.data.data.order_info.distance = distance
+						// 取还时间展示
+						// me.orderInfo.hire_return_time = common.getTimeToDay(Math.ceil(me.orderInfo
+						// 	.hire_end_time - me.orderInfo.hire_begin_time) / 60)
+						
+							me.orderInfo.hire_return_time = getRemainingTime(me.orderInfo.hire_begin_time,me.orderInfo.hire_end_time)
+							me.orderInfo.hire_begin_time = dayjs(me.orderInfo.hire_begin_time * 1000).format('YY/MM/DD') 
+							me.orderInfo.hire_end_time = dayjs(me.orderInfo.hire_end_time * 1000).format('YY/MM/DD')
+							
+						// 剩余租期判断
+						if ((me.orderInfo.hire_type == 2 && me.orderInfo.order_status == 2) || me
+							.orderInfo.order_status == 3) {
+							me.orderInfo.hire_duration_time = common.getTimeToDay(Math.ceil(me
+									.orderInfo.hire_end_time - (Math.floor(new Date()) / 1000)) /
+								60)
+						} else {
+							if (me.orderInfo.order_status == 4) {
+								me.orderInfo.hire_duration_time = common.getTimeToDay(Math.ceil(Math
+										.floor(new Date()) / 1000 - me.orderInfo.hire_end_time) /
+									60)
 							} else {
-								//提交还车图片
-								uni.navigateTo({
-									url: '/pages/activation/activation?isReturnCar=' + true + '&car_sn=' + car_sn +
-										'&shop_id=' + shop_id,
-								});
+								me.orderInfo.hire_duration_time = me.orderInfo.hire_return_time
 							}
+						}
+					} else {
+						// 默认返回上一个页面再提示报错
+						uni.navigateBack({
+							delta: 1
+						})
+						common.simpleToast(resp.data.msg)
+					}
+				})
+			},
+			navStoreBtn() {
+				const {
+					latitude,
+					longitude,
+					address,
+					shop_name
+				} = this.orderInfo
+				uni.openLocation({
+					latitude: latitude - 0,
+					longitude: longitude - 0,
+					scale: 15,
+					name: shop_name,
+					address: address,
+					success: function(res) {}
+				});
+			},
+			tapReturnCar() {
+				this.setData({
+					isShowReturnCar: true
+				})
+			},
+			immediatelyReturnBtn() {
+				//到店还车  判断逾期状态 如果逾期要交逾期费用 跳转到上传车辆图片再支付逾期费用还车
+				const isOverdue = this.orderInfo.order_status == 4
+				const {
+					car_sn,
+					shop_id,
+					overdue_money
+				} = this.orderInfo
+				const returnCarParams = {
+					car_sn,
+					shop_id,
+					overdue_money,
+					isReturnCar: true,
+				}
+				if (isOverdue) {
+					this.setData({
+						totalPrice: overdue_money,
+						isShowToBuy: true
+					})
+				} else {
+					//提交还车图片
+					uni.navigateTo({
+							url:`/pages/activation/activation?isReturnCar=true,model_id=${this.orderInfo.model_id}&sub_sn=${this.sub_sn}&car_sn=${this.orderInfo.car_sn}`
+					});
+				}
 
-						},
-						callStorePhone() {
-							const phone = this.orderInfo.link_phone
-							common.callPhone(this, phone)
-						},
-						clickCancel() {
-							const me = this
-							uni.showModal({
-								title: '取消订单',
-								content: '您是否需要取消该订单',
-								confirmText: '是',
-								confirmColor: '#0074FF',
-								cancelText: '否',
-								cancelColor: '#191D23',
-								success: function(res) {
-									if (res.confirm) {
-										me.isShowCancel = true
-									}
-								}
-							});
-						},
+			},
+			callStorePhone() {
+				const phone = this.orderInfo.link_phone
+				common.callPhone(phone)
+			},
+			async clickCancel() {
+				const me = this
+				let res = await uni.showModal({
+					title: '取消订单',
+					content: '您是否需要取消该订单',
+					confirmText: '是',
+					confirmColor: '#0074FF',
+					cancelText: '否',
+					cancelColor: '#191D23',
+				});
+				if (res[1].confirm) {
+				let {data} = await request.postApi(config.API_FLK_ORDER_CANCEL_PAY,{sub_sn:this.sub_sn})
+					if(data.code == 200){
+						common.simpleToast(data.msg)
+						this.bindOrderInfo()
+					}else{
+						common.simpleToast(data.msg)
+					}
+				}
+			},
 
-						bindCancel(e) {
-							const me = this
-							me.reason = e.currentTarget.dataset.status;
-							me.cancel = true
-							common.loading()
-							setTimeout(function() {
-								http.postApi(config.API_DAYHIRE_HIRE_CANCEL_ORDER, {
-									order_sn: me.order_sn
-								}, (resp) => {
-									if (resp.data.code === 200) {
-										uni.hideLoading()
-										common.simpleToast('取消成功')
-										setTimeout(() => {
-											me.bindOrderInfo()
-										}, 500);
-									} else {
-										common.simpleToast('订单取消失败')
-									}
-									me.reason = 0
-									me.isShowCancel = false
-								})
-							}, 600);
-						},
+			bindCancel(e) {
+				const me = this
+				me.reason = e.currentTarget.dataset.status;
+				me.cancel = true
+				common.loading()
+				setTimeout(function() {
+					http.postApi(config.API_DAYHIRE_HIRE_CANCEL_ORDER, {
+						order_sn: me.order_sn
+					}, (resp) => {
+						if (resp.data.code === 200) {
+							uni.hideLoading()
+							common.simpleToast('取消成功')
+							setTimeout(() => {
+								me.bindOrderInfo()
+							}, 500);
+						} else {
+							common.simpleToast('订单取消失败')
+						}
+						me.reason = 0
+						me.isShowCancel = false
+					})
+				}, 600);
+			},
 
-						bindToNav() {
-							console.log(111);
-							const {
-								address,
-								latitude,
-								longitude,
-								shop_name
-							} = this.shopInfo
-							uni.openLocation({
-								latitude: latitude - 0,
-								longitude: longitude - 0,
-								scale: 15,
-								name: shop_name,
-								address: address,
-								success: function(res) {},
-							})
-						},
+			bindToNav() {
+				console.log(111);
+				const {
+					address,
+					latitude,
+					longitude,
+					shop_name
+				} = this.shopInfo
+				uni.openLocation({
+					latitude: latitude - 0,
+					longitude: longitude - 0,
+					scale: 15,
+					name: shop_name,
+					address: address,
+					success: function(res) {},
+				})
+			},
 
-						bindToHome() {
-							uni.reLaunch({
-								url: '/pages/index/index',
-								success: function(res) {},
-								fail: function(res) {},
-								complete: function(res) {}
-							});
-						},
+			bindToHome() {
+				uni.reLaunch({
+					url: '/pages/index/index',
+					success: function(res) {},
+					fail: function(res) {},
+					complete: function(res) {}
+				});
+			},
 
-						callPhone() {
-							const me = this
-							const phone = me.shopInfo.link_phone
-							uni.showModal({
-								content: `您是否要拨打电话${phone}?`,
-								confirmText: '确定',
-								success: (res) => {
-									if (res.confirm) {
-										uni.makePhoneCall({
-											phoneNumber: phone,
-											success() {},
-											fail() {}
-										})
-									}
-								},
-								fail: (res) => {}
+			callPhone() {
+				const me = this
+				const phone = me.shopInfo.link_phone
+				uni.showModal({
+					content: `您是否要拨打电话${phone}?`,
+					confirmText: '确定',
+					success: (res) => {
+						if (res.confirm) {
+							uni.makePhoneCall({
+								phoneNumber: phone,
+								success() {},
+								fail() {}
 							})
-						},
+						}
+					},
+					fail: (res) => {}
+				})
+			},
 
-						bindRenew() {
-							this.isReturnHome = false
-							let isRenew = true
-							uni.navigateTo({
-								url: '/pages/carIntroduce/carIntroduce?plate_number=' + this.orderInfo
-									.license_plate_number +
-									'&isRenew=' + isRenew +
-									'&order_sn=' + this.order_sn,
-								success: function(res) {},
-								fail: function(res) {},
-								complete: function(res) {}
-							});
-						},
+			bindRenew() {
+				this.showCarPlan = true
+				// this.isReturnHome = false
+				// let isRenew = true
+				// uni.navigateTo({
+				// 	url: '/pages/carIntroduce/carIntroduce?plate_number=' + this.orderInfo
+				// 		.license_plate_number +
+				// 		'&isRenew=' + isRenew +
+				// 		'&order_sn=' + this.order_sn,
+				// 	success: function(res) {},
+				// 	fail: function(res) {},
+				// 	complete: function(res) {}
+				// });
+			},
 
-						bindBattery() {
-							this.isReturnHome = false
-							uni.navigateTo({
-								url: '/pages/battery/battery?plate_number=' + this.orderInfo.license_plate_number,
-								success: function(res) {},
-								fail: function(res) {},
-								complete: function(res) {}
-							});
-						},
+			bindBattery() {
+				this.isReturnHome = false
+				uni.navigateTo({
+					url: '/pages/battery/battery?plate_number=' + this.orderInfo.license_plate_number,
+					success: function(res) {},
+					fail: function(res) {},
+					complete: function(res) {}
+				});
+			},
+
+			bindExpanded() {
+				this.isExpanded = !this.isExpanded
+			},
 
-						bindExpanded() {
-							this.isExpanded = !this.isExpanded
-						},
+			navToInput() {
+				this.isReturnHome = false
+				uni.navigateTo({
+					url: '/pages/inputLicensePlate/inputLicensePlate?order_sn=' + this.orderInfo
+						.order_sn,
+					success: function(res) {},
+					fail: function(res) {},
+					complete: function(res) {}
+				});
+			},
 
-						navToInput() {
-							this.isReturnHome = false
-							uni.navigateTo({
-								url: '/pages/inputLicensePlate/inputLicensePlate?order_sn=' + this.orderInfo
-									.order_sn,
-								success: function(res) {},
-								fail: function(res) {},
-								complete: function(res) {}
-							});
-						},
+			// 激活车辆
+			navToActive() {
+				this.isReturnHome = false
+				const me = this
+				if (this.orderInfo.hire_type == 1) { // 预约
+					if (me.isScanCondeRentalCar) {
+						uni.scanCode({
+							onlyFromCamera: true,
+							success: function(res) {
+								me.loadScanCode(res.result)
+							},
+							fail: function(res) {},
+							complete: function(res) {},
+						})
+					} else {
+						uni.navigateTo({
+							url: '/pages/inputLicensePlate/inputLicensePlate?order_sn=' + this
+								.order_sn + '&order_model_id=' + this.orderInfo.model_id,
+							success: function(res) {},
+							fail: function(res) {},
+							complete: function(res) {}
+						});
+					}
+				} else { // 非预约
+					const isJumpReturn = false
+					uni.navigateTo({
+						url: '/pages/activation/activation?order_sn=' + this.order_sn +
+							'&plate_number=' + this
+							.orderInfo.license_plate_number + '&isJumpReturn=' + isJumpReturn,
+						success: function(res) {},
+						fail: function(res) {},
+						complete: function(res) {}
+					});
+				}
+			},
 
-						// 激活车辆
-						navToActive() {
-							this.isReturnHome = false
-							const me = this
-							if (this.orderInfo.hire_type == 1) { // 预约
-								if (me.isScanCondeRentalCar) {
-									uni.scanCode({
-										onlyFromCamera: true,
+			loadScanCode(battery_sn) {
+				const pData = {
+					longitude: this.longitude,
+					latitude: this.latitude,
+					battery_sn: battery_sn
+				}
+				const me = this
+				http.postApi(config.API_DAYHIRE_CAR_CAR_INFO, pData, (resp) => {
+					uni.hideLoading()
+					if (resp.data.code === 200) {
+						const timestamp = Date.now(); // 获取当前时间戳(毫秒)  
+						const isOffline = (Math.floor(timestamp / 1000) - resp.data.data
+							.last_comm_time) > 1800
+						me.plate_number = resp.data.data.license_plate_number
+						if (resp.data.data.last_comm_time === 0 || isOffline) {
+							common.simpleToast('此车辆已离线,请选择其他车辆')
+						} else {
+							let carInfo = JSON.stringify(resp.data.data)
+							const car_model = resp.data.data.model_info.car_model
+							const model_images = resp.data.data.model_info.model_images.split(',')
+							const return_imgs = resp.data.data.return_imgs
+							var model_id = resp.data.data.model_info.model_id
+							if (resp.data.data.has_owner) { //车辆正在被使用
+								if (resp.data.data.is_mine) { //是本人在使用
+									wx.showModal({
+										title: '提示',
+										content: '已有正在使用的车辆,是否跳转至车辆详情页?',
+										cancelText: '取消',
+										confirmText: '确定',
 										success: function(res) {
-											me.loadScanCode(res.result)
+											this.isReturnHome = false
+											uni.navigateTo({
+												url: '/pages/battery/battery?plate_number=' +
+													this.plate_number
+											});
 										},
 										fail: function(res) {},
 										complete: function(res) {},
 									})
 								} else {
-									uni.navigateTo({
-										url: '/pages/inputLicensePlate/inputLicensePlate?order_sn=' + this
-											.order_sn + '&order_model_id=' + this.orderInfo.model_id,
-										success: function(res) {},
-										fail: function(res) {},
-										complete: function(res) {}
-									});
+									common.simpleToast('此车辆正在被使用')
 								}
-							} else { // 非预约
-								const isJumpReturn = false
-								uni.navigateTo({
-									url: '/pages/activation/activation?order_sn=' + this.order_sn +
-										'&plate_number=' + this
-										.orderInfo.license_plate_number + '&isJumpReturn=' + isJumpReturn,
-									success: function(res) {},
-									fail: function(res) {},
-									complete: function(res) {}
-								});
-							}
-						},
-
-						loadScanCode(battery_sn) {
-							const pData = {
-								longitude: this.longitude,
-								latitude: this.latitude,
-								battery_sn: battery_sn
-							}
-							const me = this
-							http.postApi(config.API_DAYHIRE_CAR_CAR_INFO, pData, (resp) => {
-								uni.hideLoading()
-								if (resp.data.code === 200) {
-									const timestamp = Date.now(); // 获取当前时间戳(毫秒)  
-									const isOffline = (Math.floor(timestamp / 1000) - resp.data.data
-										.last_comm_time) > 1800
-									me.plate_number = resp.data.data.license_plate_number
-									if (resp.data.data.last_comm_time === 0 || isOffline) {
-										common.simpleToast('此车辆已离线,请选择其他车辆')
+							} else {
+								if (me.order_sn && me.order_sn != '') {
+									if (this.orderInfo.model_id != model_id) { // 预租车型与之前预约车型不一致
+										common.simpleToast('与预约车型不符')
 									} else {
-										let carInfo = JSON.stringify(resp.data.data)
-										const car_model = resp.data.data.model_info.car_model
-										const model_images = resp.data.data.model_info.model_images.split(',')
-										const return_imgs = resp.data.data.return_imgs
-										var model_id = resp.data.data.model_info.model_id
-										if (resp.data.data.has_owner) { //车辆正在被使用
-											if (resp.data.data.is_mine) { //是本人在使用
-												wx.showModal({
-													title: '提示',
-													content: '已有正在使用的车辆,是否跳转至车辆详情页?',
-													cancelText: '取消',
-													confirmText: '确定',
-													success: function(res) {
-														this.isReturnHome = false
-														uni.navigateTo({
-															url: '/pages/battery/battery?plate_number=' +
-																this.plate_number
-														});
-													},
-													fail: function(res) {},
-													complete: function(res) {},
-												})
-											} else {
-												common.simpleToast('此车辆正在被使用')
-											}
-										} else {
-											if (me.order_sn && me.order_sn != '') {
-												if (this.orderInfo.model_id != model_id) { // 预租车型与之前预约车型不一致
-													common.simpleToast('与预约车型不符')
-												} else {
-													this.isReturnHome = false
-													uni.navigateTo({
-														url: '/pages/activation/activation?plate_number=' +
-															this.plate_number + '&order_sn=' + this
-															.order_sn +
-															'&car_model=' + car_model + '&model_image=' +
-															model_images[0] + '&return_imgs=' + JSON
-															.stringify(
-																return_imgs),
-														fail() {}
-													})
-												}
-
-											} else {
-												this.isReturnHome = false
-												uni.navigateTo({
-													url: '/pages/carIntroduce/carIntroduce?carInfo=' +
-														encodeURIComponent(carInfo) + '&plate_number=' +
-														this.plate_number,
-													fail() {}
-												})
-											}
-										}
+										this.isReturnHome = false
+										uni.navigateTo({
+											url: '/pages/activation/activation?plate_number=' +
+												this.plate_number + '&order_sn=' + this
+												.order_sn +
+												'&car_model=' + car_model + '&model_image=' +
+												model_images[0] + '&return_imgs=' + JSON
+												.stringify(
+													return_imgs),
+											fail() {}
+										})
 									}
-								} else {
-									common.simpleToast(resp.data.msg)
-								}
-							})
-						},
 
-						bindToPay() {
-							const me = this
-							//#ifdef MP-ALIPAY
-							const _from = 'ali'
-							const _pay_type = 2
-							//#endif
-							//#ifdef MP-WEIXIN
-							const _from = 'wx'
-							const _pay_type = 0
-							//#endif
-							http.postApi(config.API_DAYHIRE_HIRE_CONTINUE_PAY, {
-								order_sn: me.order_sn,
-								from: _from,
-								pay_type: _pay_type
-							}, (resp) => {
-								common.loading()
-								if (resp.data.code === 200) {
-									uni.hideLoading()
-									//#ifdef MP-ALIPAY
-									my.tradePay({
-										tradeNO: resp.data.data.trade_no,
-										success: function(res) {
-											if (res.resultCode == 9000) {
-												common.simpleToast('支付成功');
-											}
-											setTimeout(function() {
-												me.bindOrderInfo()
-											}, 1000)
-										},
-										fail: function(res) {
-											common.simpleToast('支付失败,请重试')
-										},
-									})
-									//#endif
-									//#ifdef MP-WEIXIN
-									var payParams = JSON.parse(resp.data.data.payParams);
-									user.wxPay(me.order_sn, payParams, function(isSuccess) {
-										if (isSuccess) {
-											common.simpleToast('支付成功')
-											setTimeout(function() {
-												me.bindOrderInfo()
-											}, 1000)
-										} else {
-											common.simpleToast('支付失败,请重试')
-										}
-									});
-									//#endif
 								} else {
-									uni.hideLoading()
-									common.simpleToast(resp.data.msg)
+									this.isReturnHome = false
+									uni.navigateTo({
+										url: '/pages/carIntroduce/carIntroduce?carInfo=' +
+											encodeURIComponent(carInfo) + '&plate_number=' +
+											this.plate_number,
+										fail() {}
+									})
 								}
-							})
-						},
+							}
+						}
+					} else {
+						common.simpleToast(resp.data.msg)
+					}
+				})
+			},
 
-						// 计算拖车说明收费价格
-						calculateFare(distance, charge_list) {
-							let fare = 0
-							if (distance <= charge_list.start_mil) {
-								fare = charge_list.start_price / 100
+			bindToPay() {
+				const me = this
+				//#ifdef MP-ALIPAY
+				const _from = 'ali'
+				const _pay_type = 2
+				//#endif
+				//#ifdef MP-WEIXIN
+				const _from = 'wx'
+				const _pay_type = 0
+				//#endif
+				http.postApi(config.API_DAYHIRE_HIRE_CONTINUE_PAY, {
+					order_sn: me.order_sn,
+					from: _from,
+					pay_type: _pay_type
+				}, (resp) => {
+					common.loading()
+					if (resp.data.code === 200) {
+						uni.hideLoading()
+						//#ifdef MP-ALIPAY
+						my.tradePay({
+							tradeNO: resp.data.data.trade_no,
+							success: function(res) {
+								if (res.resultCode == 9000) {
+									common.simpleToast('支付成功');
+								}
+								setTimeout(function() {
+									me.bindOrderInfo()
+								}, 1000)
+							},
+							fail: function(res) {
+								common.simpleToast('支付失败,请重试')
+							},
+						})
+						//#endif
+						//#ifdef MP-WEIXIN
+						var payParams = JSON.parse(resp.data.data.payParams);
+						user.wxPay(me.order_sn, payParams, function(isSuccess) {
+							if (isSuccess) {
+								common.simpleToast('支付成功')
+								setTimeout(function() {
+									me.bindOrderInfo()
+								}, 1000)
 							} else {
-								// actual_start_mil:实际距离单位米
-								// over_start_price:向上取整的公里数*超出首公里的费用
-								var actual_start_mil = distance - charge_list.start_mil
-								var over_start_price = (Math.ceil(actual_start_mil / charge_list.step_mil)) * charge_list
-									.step_price
-								fare = (charge_list.start_price + over_start_price) / 100
-							}
-							const fareArray = fare.toFixed(2).split('.'); //将价格拆分为整数部分和小数部分
-							const price_list = {
-								start_mil: (charge_list.start_mil / 1000).toFixed(2),
-								start_price: (charge_list.start_price / 100).toFixed(2),
-								step_mil: (charge_list.step_mil / 1000).toFixed(2),
-								step_price: (charge_list.step_price / 100).toFixed(2),
-								actual_start_mil: actual_start_mil ? (actual_start_mil / 1000).toFixed(2) : 0,
-								over_start_price: over_start_price ? (over_start_price / 100).toFixed(2) : 0,
-								fare: fare.toFixed(2), // 保留两位小数
-								fareArray: fareArray //将价格拆分为整数部分和小数部分
+								common.simpleToast('支付失败,请重试')
 							}
-							return price_list
-						},
+						});
+						//#endif
+					} else {
+						uni.hideLoading()
+						common.simpleToast(resp.data.msg)
+					}
+				})
+			},
 
-						bindChangeStatus(e) {
-							const {
-								status,
-								unit
-							} = e.currentTarget.dataset
-							this.setData({
-								isSelectStatus: unit,
-								selectIndex: status
-							})
-							// this.bindDuration()
-						},
+			// 计算拖车说明收费价格
+			calculateFare(distance, charge_list) {
+				let fare = 0
+				if (distance <= charge_list.start_mil) {
+					fare = charge_list.start_price / 100
+				} else {
+					// actual_start_mil:实际距离单位米
+					// over_start_price:向上取整的公里数*超出首公里的费用
+					var actual_start_mil = distance - charge_list.start_mil
+					var over_start_price = (Math.ceil(actual_start_mil / charge_list.step_mil)) * charge_list
+						.step_price
+					fare = (charge_list.start_price + over_start_price) / 100
+				}
+				const fareArray = fare.toFixed(2).split('.'); //将价格拆分为整数部分和小数部分
+				const price_list = {
+					start_mil: (charge_list.start_mil / 1000).toFixed(2),
+					start_price: (charge_list.start_price / 100).toFixed(2),
+					step_mil: (charge_list.step_mil / 1000).toFixed(2),
+					step_price: (charge_list.step_price / 100).toFixed(2),
+					actual_start_mil: actual_start_mil ? (actual_start_mil / 1000).toFixed(2) : 0,
+					over_start_price: over_start_price ? (over_start_price / 100).toFixed(2) : 0,
+					fare: fare.toFixed(2), // 保留两位小数
+					fareArray: fareArray //将价格拆分为整数部分和小数部分
+				}
+				return price_list
+			},
 
-						//计算价格
-						// bindDuration(){
-						// 	const me = this
-						// 	var _insurance_price  //保险金
-						// 	const unit_price=(me.price_list[0].hire_price/100) * me.leaseTime  //租金
-						// 	// insurance_setting 保险
-						// 	if (me.insurance_setting!=null) {  // 有保险的时候
-						// 		// isSelectDeposit==0为免押  isOpenNoDeposit为是否成功开通免押  total_money为总金额
-						// 		// unit_price 租金   insurance_setting.price 保险金   deposit 押金
-						// 		if (me.duration_unit == 4) { // 时
-						// 			_insurance_price = (me.insurance_setting.price - 0) * 1
-						// 		} else if(me.duration_unit == 6) { // 周
-						// 			_insurance_price = (me.insurance_setting.price - 0) * 7 * me.leaseTime
-						// 		} else { //天
-						// 			_insurance_price = (me.insurance_setting.price - 0) * me.leaseTime
-						// 		}
-						// 	} else {  // 无保险
-						// 		_insurance_price = 0
-						// 	}
+			bindChangeStatus(e) {
+				const {
+					status,
+					unit
+				} = e.currentTarget.dataset
+				this.setData({
+					isSelectStatus: unit,
+					selectIndex: status
+				})
+				// this.bindDuration()
+			},
 
-						// 	if (me.isOpenNoDeposit) {
-						// 		// 金额=(周期数*周期价格)+保险金
-						// 			me.amount = ((me.leaseTime * me.price_list[0].hire_price -0) + (_insurance_price - 0)) / 100
-						// 	} else {
-						// 		// 金额=(周期数*周期价格)+押金+保险金
-						// 		me.amount = ((me.leaseTime * me.price_list[0].hire_price -0) + (me.modelInfo.deposit -0) + (_insurance_price - 0)) / 100
-						// 	}
-						// },
+			//计算价格
+			// bindDuration(){
+			// 	const me = this
+			// 	var _insurance_price  //保险金
+			// 	const unit_price=(me.price_list[0].hire_price/100) * me.leaseTime  //租金
+			// 	// insurance_setting 保险
+			// 	if (me.insurance_setting!=null) {  // 有保险的时候
+			// 		// isSelectDeposit==0为免押  isOpenNoDeposit为是否成功开通免押  total_money为总金额
+			// 		// unit_price 租金   insurance_setting.price 保险金   deposit 押金
+			// 		if (me.duration_unit == 4) { // 时
+			// 			_insurance_price = (me.insurance_setting.price - 0) * 1
+			// 		} else if(me.duration_unit == 6) { // 周
+			// 			_insurance_price = (me.insurance_setting.price - 0) * 7 * me.leaseTime
+			// 		} else { //天
+			// 			_insurance_price = (me.insurance_setting.price - 0) * me.leaseTime
+			// 		}
+			// 	} else {  // 无保险
+			// 		_insurance_price = 0
+			// 	}
 
-						loadEnd() {
-							this.bindOrderInfo()
-						},
-						navToExchange() {
-							console.log('跳转换电记录');
-							uni.navigateTo({
-								url: '/pages/exchangeRecord/exchangeRecord' +
-									'?order_sn=' + this.orderInfo.order_sn
-							})
-						}
+			// 	if (me.isOpenNoDeposit) {
+			// 		// 金额=(周期数*周期价格)+保险金
+			// 			me.amount = ((me.leaseTime * me.price_list[0].hire_price -0) + (_insurance_price - 0)) / 100
+			// 	} else {
+			// 		// 金额=(周期数*周期价格)+押金+保险金
+			// 		me.amount = ((me.leaseTime * me.price_list[0].hire_price -0) + (me.modelInfo.deposit -0) + (_insurance_price - 0)) / 100
+			// 	}
+			// },
+
+			loadEnd() {
+				this.bindOrderInfo()
+			},
+			navToExchange() {
+				console.log('跳转换电记录');
+				uni.navigateTo({
+					url: '/pages/exchangeRecord/exchangeRecord' +
+						'?order_sn=' + this.orderInfo.order_sn
+				})
 			}
-		};
+		}
+	};
 </script>
 
 <style>

+ 9 - 3
pages/storeDetails/storeDetails.vue

@@ -71,7 +71,7 @@
 						<view class="car-model-info">续航{{item.endurance}}km|重量{{item.weight}}kg</view>
 						<view class="flex-row flex-between">
 							<view class="unit-type-price flex-row">
-								<text v-if="status == 0" style="margin-right: 8rpx;">租</text>
+								<text v-if="status == 0" style="margin-right: 8rpx;">租</text>
 								<text v-if="status == 1" style="margin-right: 8rpx;">长租</text>
 								<text v-if="status == 2" style="margin-right: 8rpx;">出售</text>
 								<priceTool :price="item.money" :font_size="40" />
@@ -132,10 +132,16 @@
 				let obj = []
 				for (let index = 0; index < this.storeInfo.model_list.length; index++) {
 					let item = this.storeInfo.model_list[index];
+					if(item.sell_price){
+						obj.push({
+							...item,
+							money:(item.sell_price / 100).toFixed(2)
+						})
+					}
 					for (var i = 0; i < item.price_setting.length; i++) {
 						var items = item.price_setting[i];
 						let money = (items.hire_price / 100).toFixed(2)
-						if (this.status == 0 && (items.hire_duration_unit == 1 || items.hire_duration_unit == 4 || items
+						if (!item.sell_price && this.status == 0 && (items.hire_duration_unit == 1 || items.hire_duration_unit == 4 || items
 								.hire_duration_unit == 5 || items.hire_duration_unit == 6)) {
 							obj.push({
 								...item,
@@ -143,7 +149,7 @@
 							})
 							break
 						}
-						if (this.status == 1 && (items.hire_duration_unit == 2 || items.hire_duration_unit == 3 || items
+						if (!item.sell_price && this.status == 1 && (items.hire_duration_unit == 2 || items.hire_duration_unit == 3 || items
 								.hire_duration_unit == 4)) {
 							obj.push({
 								...item,