郭宇琦 před 2 týdny
rodič
revize
fbb1cb7ca4

+ 2 - 0
common/config_gyq.js

@@ -72,6 +72,8 @@ var config = {
 	API_FLK_CAR_DASHBOARD: api_web_url +'?r=flk/car/dashboard',
 	//购买下单
 	API_FLK_ORDER_RESERVE: api_web_url +'?r=flk/order/reserve',
+	//获取逾期金额:
+	API_FLK_CAR_OVERDUE_MONEY: api_web_url +'?r=flk/car/overdue-money',
 	
 };
 module.exports = config;

+ 15 - 4
component/carPlan/carPlan.vue

@@ -6,6 +6,11 @@
 				<view class="car-model-detail flex-row">
 					<!-- <priceTool :price="58" :font_size="40"/> -->
 					<allPrice :amount="(priceAll/100)"/>
+					<view v-if="params.overdueData.money" style="align-items: baseline;" class="flex-row">
+						<text>逾期金额:</text>
+						<allPrice  :amount="(params.overdueData.money/100)"/>
+					</view>
+					
 					<view v-if="type!=100" class="car-model-price-view">
 						<text style="margin-right: 12rpx;">已选择{{priceAll}}</text>
 						<text>{{leaseUnitsResult}}</text>
@@ -98,7 +103,7 @@
 			</view>
 		</view>
 		
-		<PayTypeModel @closeShow="isShowToBuy = false" @payToOrder="payToOrder" :free_price="priceAll" :isShowToBuy="isShowToBuy"/>
+		<PayTypeModel @closeShow="isShowToBuy = false" @payToOrder="payToOrder" :free_price="Number(priceAll) + (Number(params.overdueData.money) || 0)" :isShowToBuy="isShowToBuy"/>
 	</view>
 </template>
 <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
@@ -265,23 +270,29 @@
 				})
 			},
 			async orderRenewFn(){
-				let current_time = parseInt(new Date().getTime() / 1000);
+				// this.overdueData
+				console.log(this.params)
+				let current_time = this.params.overdueData.time ? this.params.overdueData.time:parseInt(new Date().getTime() / 1000);
+				let money = 0
+				if(this.params.overdueData.time){
+					money = Number(this.params.overdueData.money)
+				}
 				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,
+					price:this.priceAll + money,
 					current_time,
 					currency_code:'CNY'
 				}
-				
 				this.isShowToBuy = true
 				
 			},

+ 5 - 1
component/payTypeModel/payTypeModel.vue

@@ -8,7 +8,7 @@
 				</view>
 				<view class="pay-moneu-view">
 					<view class="pay-money-text">付款金额/¥</view>
-					<view class="pay-money">{{free_price}}</view>
+					<view class="pay-money"><allPrice :amount="(free_price/100)"/></view>
 				</view>
 			</view>
 			<view class="pay-type-view">
@@ -49,7 +49,11 @@
 </template>
 
 <script>
+	import allPrice from '@/component/allPrice/allPrice';
 	export default {
+		components: {
+			allPrice,
+		},
 		data() {
 			return {
 				payType:1,

+ 1 - 5
manifest.json

@@ -67,11 +67,7 @@
                         "__platform__" : [ "ios", "android" ]
                     }
                 },
-                "maps" : {
-                    "tencent" : {
-                        "key" : ""
-                    }
-                },
+                "maps" : {},
                 "oauth" : {},
                 "geolocation" : {
                     "amap" : {

+ 48 - 22
pages/activation/activation.vue

@@ -2,6 +2,11 @@
 	<view class="container-view">
 		<view class="return-info">
 			<view class="h5">车辆信息</view>
+			
+			<view v-if="overdueMoney" class="return-top  flex-row flex-between">
+				<view style="align-items: baseline;" class="flex-row">逾期费用:<allPrice  :amount="(overdueMoney/100)"/></view>
+			</view>
+			
 			<view class="return-top  flex-row flex-between">
 				<view>车辆编号:{{car_sn}}</view>
 			</view>
@@ -38,6 +43,9 @@
 			<view v-if="isReturnCar" @tap="submitReturn" class="pictures-btn">归还车辆</view>
 			<view v-else @tap="submitEnabled" class="pictures-btn">激活车辆</view>
 		</view>
+		
+		<PayTypeModel @closeShow="()=>isShowToBuy=false" @payToOrder="payToOrder" :free_price="totalPrice"
+			:isShowToBuy="isShowToBuy" />
 	</view>
 </template>
 
@@ -48,26 +56,36 @@
 	const config = require('@/common/config.js');
 	const config_gyq = require('@/common/config_gyq.js');
 	const common = require('@/common/common.js');
+	import PayTypeModel from '@/component/payTypeModel/payTypeModel';
+	import allPrice from '@/component/allPrice/allPrice';
 	export default {
 		components: {
-			uploaders
+			uploaders,
+			PayTypeModel,
+			allPrice
 		},
 		data() {
 			return {
+				totalPrice:0,
+				isShowToBuy:false,
 				myLocation:{},
 				shopInfo:{},
 				isReturnCar:"",
+				overdueTimes:'',
 				model_id:"",
 				car_sn:"",
 				shopList:{},
 				carInfoData:{},
 				carInfo: {},
+				overdueMoney:0,
+				overdueTime:0,
 				sub_sn: '',
 				model_image: '3',
 				car_model: '',
 				return_imgs: [],
 				car_imgs: [],
-				model_image_list: ''
+				model_image_list: '',
+				_image_list:[]
 			};
 		},
 		/**
@@ -85,6 +103,10 @@
 			this.sub_sn =  options.sub_sn || ''
 			this.model_id =  options.model_id || ''
 			this.car_sn =  options.car_sn || ''
+			this.overdueMoney =  options.overdueMoney || ''
+			this.overdueTime =  options.overdueTime || ''
+				
+				this.totalPrice = Number(this.overdueMoney) || 0
 			this.carDetFn()
 			this.shopSettingFn()
 			
@@ -99,31 +121,18 @@
 		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
+			async payToOrder(pay_type){
 				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('请上传车辆照片')
+				const current_time = this.overdueTime ? this.overdueTime : parseInt(milliseconds / 1000);
+				
 				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,
+					image_list:this._image_list.join(','),
+					pay_type,
+					price:this.totalPrice,
 					current_time
 				})
 				if(data.code == 200){
@@ -134,9 +143,26 @@
 						});
 					}, 800)
 				}else{
-					common.simpleToast(resp.data.msg)
+					common.simpleToast(data.msg)
 				}
 			},
+			async locationFn() {
+				let res = await uni.getLocation()
+				if (res[1]) {
+					this.myLocation = {
+						latitude: res[1].latitude,
+						longitude: res[1].longitude,
+					}
+					this.shopInfoFn()
+				}
+			},
+			//还车
+			async submitReturn(){
+				this._image_list = this.car_imgs.map(item => item.img_url)
+				if (this._image_list.length < 1) return common.simpleToast('请上传车辆照片')
+				this.isShowToBuy = true
+				
+			},
 			async shopInfoFn(){
 				let res = await uni.getLocation()
 				let {data} = await request.postApi(config.API_NEAR_SHOP_LIST,

+ 20 - 9
pages/dashboard/dashboard.vue

@@ -14,9 +14,10 @@
 		</view>
 
 		<view class="battery_life_progress">
-			<view class="is_progress">
+			<view :style="{width:((infoList.remain_mail / infoList.endurance) * 100) + '%'}" class="is_progress"></view>
+			<view class="text ">
 				<text>续航</text>
-				<text>{{infoList.remain_mail}}km</text>
+				<text> {{(infoList.remain_mail/1000).toFixed(0) || 0}}km </text>
 			</view>
 		</view>
 
@@ -175,20 +176,31 @@
 			margin-bottom: 40rpx;
 			background: #FFFFFF;
 			border-radius: 40rpx;
-			padding: 6rpx;
 			overflow: hidden;
-
+			position: relative;
+			height: 92rpx;
 			.is_progress {
-				width: 50%;
+				min-width: 30%;
 				height: 100%;
 				padding: 16rpx 32rpx;
 				background: #0A59F7;
 				border-radius: 36rpx;
+				position: absolute;
+				left: 0;
+				top: 0;
+			}
+			.text{
+				position: relative;
+				z-index: 1;
+				font-size: 32rpx;
+				color: #fff;
 				display: flex;
 				align-items: center;
-				justify-content: space-between;
-				color: #fff;
-				font-size: 36rpx;
+				height: 92rpx;
+				padding-left: 10rpx;
+				text{
+					line-height: 1;
+				}
 			}
 		}
 
@@ -196,7 +208,6 @@
 			display: flex;
 			flex-wrap: wrap;
 			justify-content: space-between;
-
 			.info-wrap {
 				width: 336rpx;
 				margin-bottom: 14rpx;

+ 24 - 9
pages/deviceInfo/deviceInfo.vue

@@ -1,39 +1,43 @@
 <template>
 	<view class="device-info-main">
-		<view class="device-name">铁甲小宝</view>
+		<view class="device-name">{{list.car_name}}</view>
 		<view class="block-card">
 			<view class="info-view">
 				<view class="info-title">车架号</view>
-				<view class="info-value">YM201823355887777</view>
+				<view class="info-value">{{list.frame_no}}</view>
 			</view>
 			<view class="info-view">
 				<view class="info-title">设备编号</view>
-				<view class="info-value">YM201823355887777</view>
+				<view class="info-value">{{car_sn}}</view>
 			</view>
 			<view class="info-view">
 				<view class="info-title">车辆总里程</view>
-				<view class="info-value">YM201823355887777</view>
+				<view class="info-value">{{(list.total_mil / 1000).toFixed(0)}}km</view>
 			</view>
 		</view>
 		<view class="flex-row">
 			<view class="block-card-1" style="margin-right: 18rpx;">
 				<img class="info-icon" src="https://qiniu.bms16.com/FoyFReERWQ5jmqQIk0Aj9V7SWGR2" alt="">
 				<view class="info-text">中控硬件</view>
-				<view class="info-vosion">V1.0.6</view>
+				<view class="info-vosion">{{list.control_hardware}}</view>
 			</view>
-			<view class="block-card-1" >
+			<view class="block-card-1">
 				<img class="info-icon" src="https://qiniu.bms16.com/Fvf3btY0699U2P65cRxYGDBADNHr" alt="">
 				<view class="info-text">中控软件</view>
-				<view class="info-vosion">V1.0.6</view>
+				<view class="info-vosion">{{list.control_software}}</view>
 			</view>
 		</view>
 	</view>
 </template>
-
 <script>
+	var config = require('../../common/config.js');
+	var common = require('../../common/common.js');
+	var request = require('../../common/request');
 	export default {
 		data() {
 			return {
+				car_sn:"",
+				list:{}
 			};
 		}
 		/**
@@ -41,9 +45,20 @@
 		 */
 		,
 		onLoad: function(options) {
+			this.car_sn = uni.getStorageSync('car_info').car_sn || ''
+			this.loadCarDetailFn()
 		},
 		methods: {
-
+			async loadCarDetailFn() {
+				let {
+					data
+				} = await request.postApi(config.API_FLK_CAR_DETAIL, {
+					car_sn:this.car_sn
+				})
+				if(data.code == 200){
+					this.list = data.data
+				}
+			}
 		}
 	};
 </script>

+ 71 - 61
pages/orderStatus/orderStatus.vue

@@ -11,8 +11,8 @@
 					<view v-else-if="orderInfo.pay_status == 6">线下审核拒绝</view>
 				</view>
 				<view v-if="orderInfo.order_status == 1 && orderInfo.hire_begin_time">
-					{{('请于'+orderInfo.hire_begin_time+'到门店取车')}}
-					
+					{{('请于'+orderInfo.hire_begin_times+'到门店取车')}}
+
 				</view>
 				<view v-if="orderInfo.order_status == 1 && !orderInfo.hire_begin_time">
 					待取车
@@ -40,16 +40,24 @@
 						<view
 							v-if="(orderInfo.order_status == 2&&orderInfo.hire_type==2) || orderInfo.order_status == 3">
 							租期剩余</view>
-						<view v-else-if="orderInfo.order_status == 4" class="red-status">逾期时长</view>
+						<view v-else-if="orderInfo.order_status == 4 " class="red-status">逾期时长</view>
 						<view v-else>
 							租借周期:{{orderInfo.hire_duration}}{{hireDurationUnitFn(orderInfo.hire_duration_unit)}}</view>
 					</view>
-					<view class="money-item">
-						<view :class="orderInfo.order_status == 4?'red-status':''">
-							{{tools.toFix(orderInfo.hire_money / 100)}}<text>元</text>
+					<view v-if="orderInfo.order_status != 4" class="money-item">
+						<view>
+							{{tools.toFix(orderInfo.hire_money / 100)}}
 						</view>
-						<view>订单金额</view>
+						<view>订单金额·$</view>
 					</view>
+
+					<view v-if="orderInfo.order_status == 4" class="money-item">
+						<view style="color:#F95151" class="red-status">
+							{{tools.toFix(overdueData.money / 100)}}
+						</view>
+						<view style="color:#F95151">逾期金额·$</view>
+					</view>
+
 					<view @tap="bindExpanded">
 						<text>{{isExpanded?'收起':'展开'}}</text>
 						<img
@@ -102,7 +110,7 @@
 						<view class="sn-title">租车金额</view>
 						<view class="sn-text">$ {{tools.toFix(orderInfo.hire_money/1000)}}</view>
 					</view>
-					<view  v-if="orderInfo.order_type != 3" class="sn-content flex-row flex-between">
+					<view v-if="orderInfo.order_type != 3" 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)}}
@@ -180,9 +188,9 @@
 				</view>
 			</view>
 			<view class="return-bottom flex-row">
-				<view>{{orderInfo.hire_begin_time}}</view>
+				<view>{{orderInfo.hire_begin_times}}</view>
 				<img src="https://qiniu.bms16.com/FoXmBbj7YGWmjyeuVEY35nzieqnx" />
-				<view>{{orderInfo.hire_end_time}}</view>
+				<view>{{orderInfo.hire_end_times}}</view>
 				<!-- <view>{{tools.formatTimeDate(orderInfo.hire_begin_time)}}</view>
 				<img src="https://qiniu.bms16.com/FoXmBbj7YGWmjyeuVEY35nzieqnx" />
 				<view>{{tools.formatTimeDate(orderInfo.hire_end_time)}}</view> -->
@@ -209,7 +217,8 @@
 		<!-- 考虑为空的情况 -->
 
 		<view class="payment-info flex-row flex-between">
-			<view v-if="(orderInfo.order_status == 1 || orderInfo.pay_status == 5) && orderInfo.pay_type != 1" class="cancel" @tap="clickCancel">结束订单
+			<view v-if="(orderInfo.order_status == 1 || orderInfo.pay_status == 5) && orderInfo.pay_type != 1"
+				class="cancel" @tap="clickCancel">结束订单
 			</view>
 			<view v-if="orderInfo.order_status == 1" class="flex-row"> <!-- 待取车 -->
 				<view @tap="callStorePhone" class="deposit-btn ">联系门店</view>
@@ -221,38 +230,40 @@
 				<view @tap="navToScan" class="sesame-btn ">去上传</view>
 			</view>
 
-			<view v-else-if="(orderInfo.order_status == 3||orderInfo.order_status == 4) && orderInfo.order_type != 3" class="flex-row"> <!-- 使用中 -->
+			<view v-else-if="(orderInfo.order_status == 3||orderInfo.order_status == 4) && orderInfo.order_type != 3 && orderInfo.pay_status != 5"
+				class="flex-row"> <!-- 使用中 -->
 				<view @tap="callStorePhone" class="cancel">联系门店</view>
 				<view @tap="tapReturnCar" class="deposit-btn">到店还车</view>
 				<view @tap="bindRenew" class="sesame-btn">续租</view>
 			</view>
+			
 			<view v-else-if="orderInfo.order_status == 5||orderInfo.order_status == 6" @tap="callStorePhone"
 				class="pay-btn">
 				联系门店</view> <!-- 待门店确认||还车中,等待门店取车 -->
 			<view v-else-if="orderInfo.order_status == 7" @tap="callStorePhone" class="pay-btn">联系门店</view>
 			<!--车辆已归还 已完成 -->
-			
-			<view v-if="orderInfo.order_type == 3 && (orderInfo.order_status == 3||orderInfo.order_status == 4)" @tap="callStorePhone" class="pay-btn">联系门店</view>
-			
-		</view>
 
+			<view v-if="orderInfo.order_type == 3 && (orderInfo.order_status == 3||orderInfo.order_status == 4)"
+				@tap="callStorePhone" class="pay-btn">联系门店</view>
+		</view>
+		
 		<view v-if="isShowCancel" class="cancel-b">
 			<view class="cancel-box">
 				<view class="cancel-title flex-row flex-between">
 					<view>选择取消原因</view>
 					<view @tap="isShowCancel = false" style="font-size: 60rpx;">×</view>
 				</view>
-				<view @click="reason = '行程变更无需用车'"  class="cancel-item flex-row flex-between">
+				<view @click="reason = '行程变更无需用车'" class="cancel-item flex-row flex-between">
 					<view>行程变更无需用车</view>
 					<img
 						:src="reason == '行程变更无需用车'?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
 				</view>
-				<view @click="reason = '修改订单信息'"  class="cancel-item flex-row flex-between">
+				<view @click="reason = '修改订单信息'" class="cancel-item flex-row flex-between">
 					<view>修改订单信息</view>
 					<img
 						:src="reason == '修改订单信息'?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
 				</view>
-				<view @click="reason = '不想要了'"  class="cancel-item flex-row flex-between">
+				<view @click="reason = '不想要了'" class="cancel-item flex-row flex-between">
 					<view>不想要了</view>
 					<img
 						:src="reason == '不想要了'?'https://qiniu.bms16.com/FhWimtmWybKlYMB6mgIReVWArbfq':'https://qiniu.bms16.com/Fh0JH6_QbiXYmVy7FNYnDkVIGvLC'" />
@@ -260,7 +271,7 @@
 				<view @click="bindCancel" class="cancel_btn">确认取消</view>
 			</view>
 		</view>
-		
+
 		<returnCar :isShowReturnCar="isShowReturnCar" @closeShowReturnCarBtn="()=>isShowReturnCar=false"
 			@navStoreBtn="navStoreBtn" @immediatelyReturnBtn="immediatelyReturnBtn" />
 
@@ -302,6 +313,7 @@
 		},
 		data() {
 			return {
+				overdueData:{},
 				select_type: '',
 				car_detail: {},
 				showCarPlan: false,
@@ -337,7 +349,11 @@
 		/**
 		 * 生命周期函数--监听页面显示
 		 */
-		onShow: function() {},
+		onShow: function(e) {
+			if(this.sub_sn && this.orderInfo.sub_sn){
+				this.bindOrderInfo()
+			}
+		},
 
 		onUnload: function() {},
 
@@ -345,6 +361,16 @@
 
 		methods: {
 
+			//逾期费用计算
+			async overdueMoneyFn(car_sn) {
+				let {data} = await request.postApi(config_gyq.API_FLK_CAR_OVERDUE_MONEY,{car_sn})
+				if(data.code == 200){
+					this.overdueData = data.data
+				}else{
+					common.simpleToast(data.msg)
+				}
+			},
+
 			async loadCarInfo(model_id) {
 				const me = this
 				http.postApi(config.API_FLK_INDEX_CAR_MODEL_DETAIL, {
@@ -363,8 +389,6 @@
 								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);
 					}
@@ -457,6 +481,7 @@
 				}, (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)
@@ -470,10 +495,10 @@
 
 						me.orderInfo.hire_return_time = getRemainingTime(me.orderInfo.hire_begin_time, me
 							.orderInfo.hire_end_time)
-						me.orderInfo.hire_begin_time = me.orderInfo.hire_begin_time ? dayjs(me.orderInfo
+						me.orderInfo.hire_begin_times = me.orderInfo.hire_begin_time ? dayjs(me.orderInfo
 							.hire_begin_time * 1000).format(
 							'YY-MM-DD') : 0
-						me.orderInfo.hire_end_time = me.orderInfo.hire_end_time ? dayjs(me.orderInfo
+						me.orderInfo.hire_end_times = me.orderInfo.hire_end_time ? dayjs(me.orderInfo
 							.hire_end_time * 1000).format(
 							'YY-MM-DD') : 0
 
@@ -485,6 +510,7 @@
 								60)
 						} else {
 							if (me.orderInfo.order_status == 4) {
+								me.overdueMoneyFn(me.orderInfo.car_sn)
 								me.orderInfo.hire_duration_time = common.getTimeToDay(Math.ceil(Math
 										.floor(new Date()) / 1000 - me.orderInfo.hire_end_time) /
 									60)
@@ -536,49 +562,31 @@
 					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}`
-					});
-				}
-
+				//提交还车图片
+				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}&isOverdue=${isOverdue}&overdueMoney=${this.overdueData.money}&overdueTime=${this.overdueData.time}`
+				});
+				// if (isOverdue) {
+				// 	this.setData({
+				// 		totalPrice: this.overdueData.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}&isOverdue=${isOverdue}&overdueMoney=${this.overdueData.money}&overdueTime=${this.overdueData.time}`
+				// 	});
+				// }
 			},
 			callStorePhone() {
 				const phone = this.orderInfo.link_phone
 				common.callPhone(phone)
 			},
-			 async clickCancel() {
+			async clickCancel() {
 				this.isShowCancel = true
 			},
 
 			async bindCancel() {
-				// 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);
 				const me = this
 				let res = await uni.showModal({
 					title: '取消订单',
@@ -593,7 +601,7 @@
 						data
 					} = await request.postApi(config.API_DAYHIRE_HIRE_CANCEL_ORDER, {
 						sub_sn: this.sub_sn,
-						remark:this.reason
+						remark: this.reason
 					})
 					if (data.code == 200) {
 						common.simpleToast(data.msg)
@@ -651,6 +659,7 @@
 			},
 
 			bindRenew() {
+				this.params.overdueData = this.overdueData
 				this.showCarPlan = true
 				// this.isReturnHome = false
 				// let isRenew = true
@@ -941,7 +950,8 @@
 
 <style>
 	@import './orderStatus.css';
-	.cancel_btn{
+
+	.cancel_btn {
 		width: 702rpx;
 		height: 80rpx;
 		background: #060809;