liuwei 4 days ago
parent
commit
498c6d8cd5

+ 3 - 2
common/bluetooth/ZXCar.js

@@ -33,7 +33,7 @@ function haveBms() {
 }
 
 function isDevice(device, data) {
-	// console.log(device,data,'device111');
+	console.log(device,data,'device111');
 	const advertisData = new Uint8Array(data.advertisData);
 	// console.log(advertisData,'判断返回第几个字段是正常模式还是升级模式');
 	//打印返回广播 判断返回字段是正常模式还是升级模式
@@ -47,7 +47,8 @@ function isDevice(device, data) {
 	//     return true;
 	// }
 	//判断是否是智寻的蓝牙
-	const result = data.name.startsWith("ZX");
+	// const result = data.name.startsWith("ZX");
+	const result = (data.name==device.mac_id);
 	// const result = data.name.startsWith("ZN");
 	// if (data.name === "865416038002201") {
 	// if (data.name === "ZX2503150000000") {

+ 2 - 1
common/http.js

@@ -124,7 +124,8 @@ function postRequest(url, data, successCallBack, failCallBack) {
 			} else if(res.data.code === 503){
 				return
 			} else {
-				uni.showToast({ title: res.data.msg, icon: 'none' })
+				successCallBack(res);
+				//uni.showToast({ title: res.data.msg, icon: 'none' })
 				return
 			}
 			if (_checkTokenValid(res)) {

+ 201 - 0
component/customSwitch.vue

@@ -0,0 +1,201 @@
+<template>
+	<view class="switch-container" :style="{ width: width, height: height }" @touchstart="onTouchStart"
+		@touchmove="onTouchMove" @touchend="onTouchEnd" @click="handleClick">
+		<view class="switch" :class="{ active: isValue }">
+			<!-- 额外包裹一层 -->
+			<view class="indicator-wrapper" :class="{ shaking: isShaking }">
+				<image class="indicator" :src="imageSrc" />
+			</view>
+			<view v-if="isShowSwitchText&&isValue" class="switch_text_off">滑动关机</view>
+			<view v-if="isShowSwitchText&&!isValue" class="switch_text_on">滑动开机</view>
+		</view>
+		
+	</view>
+</template>
+
+<script>
+	export default {
+		props: {
+			modelValue: Boolean,
+			imageSrc: {
+				type: String,
+				default: "https://qiniu.bms16.com/Fkovrpq1bexe-Unal_VJREbLUhdu" // 默认滑块图片
+			},
+			width: {
+				type: String,
+				default: "400rpx" // 默认宽度
+			},
+			height: {
+				type: String,
+				default: "96rpx" // 默认高度
+			},
+			defaultPosition: {
+				type: String,
+				default: "right" // 默认在左边
+			},
+			fetchData: Function // 后台请求函数
+		},
+		data() {
+			return {
+				isValue:false,
+				isShowSwitchText: true,
+				isSwiping: false, // 是否滑动
+				isShaking: false, // 是否抖动
+				startX: 0, // 触摸起始位置
+				position: 2, // 滑块初始位置 (左侧)
+				containerWidth: 400, // 容器宽度(px)
+				indicatorSize: 36 // 滑块大小(px)
+			};
+		},
+		computed: {
+			maxPosition() {
+				return this.containerWidth - this.indicatorSize - 4; // 计算滑块最右边的位移
+			}
+		},
+		watch: {
+			modelValue(newValue) {
+				console.log(newValue,"值变动")
+				this.isValue = newValue
+				this.position = this.isValue ? this.maxPosition : 2;
+			}
+		},
+		mounted() {
+			//this.position = this.defaultPosition === "right" ? this.maxPosition : 2;
+			// 默认根据 defaultPosition 设置 modelValue
+			// this.$emit("update:modelValue", this.defaultPosition === "right");
+			// console.log("modelValue", this.modelValue);
+		},
+		methods: {
+			async triggerRequest() {
+				if (this.isShaking) return; // 避免重复触发
+				this.isShaking = true; // 开始抖动
+				try {
+					await this.fetchData(); // 触发后台请求
+				} catch (error) {
+					console.error("请求失败:", error);
+				} finally {
+					console.log(this.defaultPosition);
+					this.isShowSwitchText = true;
+					this.isShaking = false; // 停止抖动
+					this.isValue = !this.isValue
+					// this.$emit("changeValue", this.isValue); // 切换状态
+				}
+			},
+			handleClick() {
+				if (this.isSwiping) return;
+				this.isShowSwitchText = false;
+				this.triggerRequest();
+			},
+			onTouchStart(e) {
+				this.isShowSwitchText = false;
+				this.isSwiping = false;
+				this.startX = e.touches[0].clientX;
+			},
+			onTouchMove(e) {
+				let moveX = e.touches[0].clientX - this.startX;
+				if (Math.abs(moveX) > 10) {
+					this.isSwiping = true;
+				}
+			},
+			onTouchEnd() {
+				if (!this.isSwiping) return;
+				this.triggerRequest();
+				this.isSwiping = false;
+			}
+		}
+	};
+</script>
+
+<style scoped>
+	.switch-container {
+		/* 	width: 400rpx;
+		height: 96rpx; */
+		background: #FFFFFF;
+		border-radius: 48rpx;
+		border: 4rpx solid #F1F3F4;
+		display: flex;
+		align-items: center;
+		padding: 2px;
+		position: relative;
+	}
+
+	.switch {
+		width: 100%;
+		height: 100%;
+		border-radius: 15px;
+		position: relative;
+		transition: background 0.3s;
+	}
+
+	.switch.active {
+		background: #ffffff;
+	}
+
+	/* 外层比滑块大 5px */
+	.indicator-wrapper {
+		width: 144rpx;
+		height: 80rpx;
+		background: rgba(0, 0, 0, 1);
+		border-radius: 42rpx;
+		display: flex;
+		justify-content: center;
+		align-items: center;
+		position: absolute;
+		/* top: 6rpx; */
+		left: 6rpx;
+	}
+
+	.indicator {
+		width: 26px;
+		height: 26px;
+		border-radius: 50%;
+		position: relative;
+		transition: transform 0.3s;
+	}
+
+	.switch.active .indicator-wrapper {
+		transform: translateX(244rpx);
+	}
+
+	.indicator-wrapper.shaking {
+		animation: shake 0.2s infinite alternate;
+	}
+
+	.switch_text_on {
+		position: relative;
+		width: 158rpx;
+		height: 80rpx;
+		font-family: PingFangSC, PingFang SC;
+		font-weight: 500;
+		font-size: 32rpx;
+		color: #060809;
+		line-height: 80rpx;
+		text-align: left;
+		font-style: normal;
+		margin-left: 200rpx;
+	}
+
+	.switch_text_off {
+		position: relative;
+		width: 158rpx;
+		height: 80rpx;
+		font-family: PingFangSC, PingFang SC;
+		font-weight: 500;
+		font-size: 32rpx;
+		color: #060809;
+		line-height: 80rpx;
+		text-align: left;
+		font-style: normal;
+		margin-left: 50rpx;
+	}
+
+	@keyframes shake {
+		0% {
+			transform: translateX(110rpx);
+		}
+
+		100% {
+			transform: translateX(120rpx);
+		}
+	}
+</style>

+ 3 - 104
mixin/index.js

@@ -15,7 +15,7 @@ export default {
 	  popText:'',
 	  cmdType:'',
 	  myLocation:{},
-	  popupControlShow:false,
+	  popupControlShow:false
     };
   },
   onLoad(){
@@ -31,7 +31,7 @@ export default {
 		   console.log(this.myLocation)
 	  },
 		tapOpenControl(e){
-			const _carOnline=uni.getStorageSync('car_info').online!=0 //在线
+			const _carOnline= uni.getStorageSync('car_info').online != 0 //在线
 			console.log(this.popupControlShow);
 			const {name,type}=e
 			this.setData({
@@ -199,108 +199,7 @@ export default {
 		// 					// this.trunOn(resolve)
 		// 				});
 		// 			},
-		trunOn(type){
-			
-			if (this.carOnline) {
-				//开机1 关机0
-				const car_sn= uni.getStorageSync('car_info').car_sn;
-				const pData = {
-					car_sn,
-					switch: switchType
-				}
-				const me=this
-				common.loading();
-				http.postApi(config.API_FLK_CAR_SWITCH, pData, (resp) => {
-					uni.hideLoading();
-					if (resp.data.code === 200) {
-						common.simpleToast(me.popText + '成功');
-						const activeTag = me.contrilList.map(item => {
-							if('isLock' in item){
-								item.isTurnOn = (item.isTurnOn == 1) ? 0 : 1
-								item.name = i18n.t((item.isTurnOn == 1) ? '关机' : '开机')
-							}
-							return item
-						})
-						const tag = getFunctionTag().tag
-						setFunctionTag({
-							activeTag,
-							tag
-						})
-						me.$emit('loadCarDetail',pData,car_sn)
-					} else {
-						common.simpleToast(resp.data.msg);
-					}
-				});
-			}else{
-				//车辆离线
-				const car_sn= uni.getStorageSync('car_info').car_sn;
-				common.loading();
-				if (type==1) {
-					bluetooth.turnOnCar(car_sn, () => {
-						uni.hideLoading();
-					});
-				}else{
-					bluetooth.turnOffCar(car_sn, () => {
-						uni.hideLoading();
-					});
-				}
-			}
-		},
-		async navToInputPages() {
-			const me = this
-			const exchange_need_package=uni.getStorageSync('car_info').exchange_need_package;
-			if(exchange_need_package==0){
-				uni.scanCode({
-					scanType:['qrCode'],
-					success(res) {
-						me.loadGeneralQRData(res.result)
-					},
-					fail() {
-						me.$msg('扫码失败,请重新扫码')
-					}
-				})
-			}else if(exchange_need_package==1){
-				uni.showModal({
-					title: '温馨提示',
-					content: '您还未购买换电套餐,是否前往进行换电套餐?',
-					showCancel: true,
-					cancelText: '取消',
-					confirmText: '前往购买',
-					success: function(res) {
-						if (res.confirm) {
-							if(isCarLocation){
-								uni.navigateTo({
-									url: `/pages/batteryPackage/batteryPackage`
-								})
-							}else{
-							}
-							
-						}
-					},
-					fail: function(res) {},
-					complete: function(res) {},
-				})
-			}else if(exchange_need_package==-1){
-				this.$msg('当前车辆暂未绑定电池')
-			}
-			
-		},
-		loadGeneralQRData(options) {
-			console.log(options)
-			let objOpt = this.$paramsObj(options)
-			
-			if (objOpt.d) {
-				console.log('扫码的是机柜')
-				uni.navigateTo({
-					url: `/pages/cabinetDetail/cabinetDetail?dev_id=${objOpt.d}`,
-				})
-				return
-			} else {
-				console.log('扫码的是车辆')
-				this.$msg('请扫描机柜二维码')
-				return
-			}
-		},
+
 	},
 
  

+ 2 - 1
pages/index/components/control/control.css

@@ -191,9 +191,10 @@
 	background: #FFFFFF;
 	border-radius: 48rpx;
 	font-family: PingFangSC, PingFang SC;
-	font-weight: 600;
+	font-weight: 500;
 	font-size: 32rpx;
 	color: #060809;
+	margin-left: 20rpx;
 	padding-left: 20rpx;
 }
 .car-change-text{

+ 183 - 25
pages/index/components/control/control.vue

@@ -11,10 +11,12 @@
 			</view>
 		</scroll-view>
 		<view class="flex-row power-view">
-			<view class="power-on-off flex-row" >
+			<!-- <view class="power-on-off flex-row" >
 				<view :style="sliderStyle" @touchstart="touchStart" @touchmove="touchMove" @touchend="touchEnd" class="power-on-btn"><image style="width: 52rpx;height: 52rpx;" src="https://qiniu.bms16.com/Fkovrpq1bexe-Unal_VJREbLUhdu" mode=""></image></view>
 				<view class="power-on-text" >滑动启动</view>
-			</view>
+			</view> -->
+			<custom-switch  :width="'400rpx'"
+				:height="'96rpx'"  :modelValue="switchValue" :fetchData="loadData" @changeValue="changeValue"></custom-switch>
 			<!-- <custom-switch :defaultPosition="'right'" :width="'400rpx'" 
 			    :height="'96rpx'"  v-model="switchValue" :fetchData="loadData"></custom-switch> -->
 			<view @tap="navToInputPages" class="car-change-battery flex-row">
@@ -78,6 +80,7 @@
 	var common = require('@/common/common.js');
 	var http = require('@/common/http.js');
 	import CustomSwitch from '@/component/customSwitch.vue'; // 引入组件
+	
 	import controlMixin from '@/mixin/index';
 	import i18n from '@/locale/index.js'
 	import {
@@ -107,9 +110,10 @@ export default {
 			switchValue: false,
 			isShowMore:false,
 			car_line:false,
-			startX: 0, // 滑块开始滑动的初始位置
-			moveX: 0, // 滑块滑动的距离
-			unlocked: false, // 是否解锁成功的标志
+			// startX: 0, // 滑块开始滑动的初始位置
+			// moveX: 0, // 滑块滑动的距离
+			// unlocked: false, // 是否解锁成功的标志
+			
 		};
     },
 	computed: {
@@ -122,6 +126,9 @@ export default {
 	},
 	mounted() {
 		// this.contrilList = getFunctionTag().activeTag
+		// setTimeout(()=>{
+			this.switchValue=uni.getStorageSync('car_info').acc_state==1
+		// },50)
 	},
  
     /**
@@ -137,26 +144,177 @@ export default {
 				url: '/pages/carFunctionSet/more?online='+this.online
 			})
 		},
-		    touchStart(event) {
-				console.log(event,'test');
-		      this.startX = this.unlocked?this.moveX:event.touches[0].clientX;
-		    },
-		    touchMove(event) {
-		      this.moveX = event.touches[0].clientX - this.startX;
-			  console.log( event.touches[0].clientX,this.startX,'this.moveX');
-		      if (this.moveX < 0) this.moveX = 0;
-		      if (this.moveX > 70 &&!this.unlocked) this.moveX = 135; // 假设滑块最大滑动距离为135px
-			  
-		    },
-		    touchEnd() {
-				 console.log(this.moveX,'this.moveX1111');
-		      if (this.moveX >= 135) {
-		        this.unlocked = true;
-		        console.log('解锁成功');
-		      } else {
-		        // this.moveX = 0;
-		      }
-		    }
+		trunOn(type){
+			
+			if (this.carOnline) {
+				//开机1 关机0
+				const car_sn= uni.getStorageSync('car_info').car_sn;
+				const pData = {
+					car_sn,
+					switch: switchType
+				}
+				const me=this
+				common.loading();
+				http.postApi(config.API_FLK_CAR_SWITCH, pData, (resp) => {
+					uni.hideLoading();
+					if (resp.data.code === 200) {
+						common.simpleToast(me.popText + '成功');
+						const activeTag = me.contrilList.map(item => {
+							if('isLock' in item){
+								item.isTurnOn = (item.isTurnOn == 1) ? 0 : 1
+								item.name = i18n.t((item.isTurnOn == 1) ? '关机' : '开机')
+							}
+							return item
+						})
+						const tag = getFunctionTag().tag
+						setFunctionTag({
+							activeTag,
+							tag
+						})
+						me.$emit('loadCarDetail',pData,car_sn)
+					} else {
+						common.simpleToast(resp.data.msg);
+					}
+				});
+			}else{
+				//车辆离线
+				const car_sn= uni.getStorageSync('car_info').car_sn;
+				common.loading();
+				if (type==1) {
+					bluetooth.turnOnCar(car_sn, () => {
+						uni.hideLoading();
+					});
+				}else{
+					bluetooth.turnOffCar(car_sn, () => {
+						uni.hideLoading();
+					});
+				}
+			}
+		},
+		async navToInputPages() {
+			const me = this
+			const exchange_need_package=uni.getStorageSync('car_info').exchange_need_package;
+			if(exchange_need_package==0){
+				uni.scanCode({
+					scanType:['qrCode'],
+					success(res) {
+						me.loadGeneralQRData(res.result)
+					},
+					fail() {
+						me.$msg('扫码失败,请重新扫码')
+					}
+				})
+			}else if(exchange_need_package==1){
+				uni.showModal({
+					title: '温馨提示',
+					content: '您还未购买换电套餐,是否前往进行换电套餐?',
+					showCancel: true,
+					cancelText: '取消',
+					confirmText: '前往购买',
+					success: function(res) {
+						if (res.confirm) {
+							if(isCarLocation){
+								uni.navigateTo({
+									url: `/pages/batteryPackage/batteryPackage`
+								})
+							}else{
+							}
+							
+						}
+					},
+					fail: function(res) {},
+					complete: function(res) {},
+				})
+			}else if(exchange_need_package==-1){
+				this.$msg('当前车辆暂未绑定电池')
+			}
+			
+		},
+		loadGeneralQRData(options) {
+			console.log(options)
+			let objOpt = this.$paramsObj(options)
+			
+			if (objOpt.d) {
+				console.log('扫码的是机柜')
+				uni.navigateTo({
+					url: `/pages/cabinetDetail/cabinetDetail?dev_id=${objOpt.d}`,
+				})
+				return
+			} else {
+				console.log('扫码的是车辆')
+				this.$msg('请扫描机柜二维码')
+				return
+			}
+		},
+		async loadData() {
+			return new Promise((resolve,reject) => {
+				if (uni.getStorageSync('car_info').online==1) {
+								//开机1 关机0
+								const car_sn= uni.getStorageSync('car_info').car_sn;
+								const switchType= uni.getStorageSync('car_info').acc_state==1?0:1;
+								const pData = {
+									car_sn,
+									switch: switchType
+								}
+								console.log("xxxxx")
+								const me=this
+								common.loading();
+								http.postApi(config.API_FLK_CAR_SWITCH, pData, (resp) => {
+									uni.hideLoading();
+									console.log("xxxxx11")
+									if (resp.data.code === 200) {
+										const textStr = (this.switchValue==0)?'开机':'关机'
+										this.switchValue=!this.switchValue
+										
+										common.simpleToast(textStr + '成功');
+										// const activeTag = me.contrilList.map(item => {
+										// 	if('isLock' in item){
+										// 		item.isTurnOn = (item.isTurnOn == 1) ? 0 : 1
+										// 		item.name = i18n.t((item.isTurnOn == 1) ? '关机' : '开机')
+										// 	}
+										// 	return item
+										// })
+										// const tag = getFunctionTag().tag
+										// setFunctionTag({
+										// 	activeTag,
+										// 	tag
+										// })
+										setTimeout(resolve, 1000);
+										 // resolve(resp.data);
+										me.$emit('loadCarDetail',pData,car_sn)
+									} else {
+										
+										console.log("xxxxx3")
+										console.log("1111")
+										 setTimeout(reject, 1000);
+										//setTimeout(resolve, 1000);
+										common.simpleToast(resp.data.msg);
+									}
+								});
+							}else{
+								console.log("xxxxx2")
+								//车辆离线
+								const car_sn= uni.getStorageSync('car_info').car_sn;
+								common.loading();
+								if (type==1) {
+									bluetooth.turnOnCar(car_sn, () => {
+										uni.hideLoading();
+									});
+								}else{
+									bluetooth.turnOffCar(car_sn, () => {
+										uni.hideLoading();
+									});
+								}
+							}
+				// console.log(me.switchValue,'this.switchValue');
+				// // this.trunOn()
+				// setTimeout(resolve, 1000); // 模拟 5 秒请求时间
+			});
+		},
+		changeValue(test){
+			console.log(test);
+			this.switchValue=test
+		}
 		// tapOpen(e){
 		// 	this.carOnline=this.online
 		// 	console.log( getFunctionTag().activeTag, getFunctionTag());

+ 3 - 10
pages/index/index.vue

@@ -79,7 +79,7 @@
 						</view>
 					</view>
 					<Control :contrilList="contrilList" @toBluetooth="inductiveUnlockHandle" @loadCarDetail="loadCarDetail"/>
-			
+					
 			
 					<view :class="['flex-row', 'flex-between', 'map-card-view',car_info.exchange_package_info && car_info.exchange_package_info.activity_time?'height_362':'height_260']">
 						<MapCard :car_info="car_info" :height="!!(car_info.exchange_package_info && car_info.exchange_package_info.activity_time)"/>
@@ -189,7 +189,7 @@
 	import AndroidUnlockAuth from './components/AndroidUnlockAuth.vue'
 	import IosUnlockAuth from './components/IosUnlockAuth.vue'
 	import ReturnCar from '@/component/returnCar/returnCar';
-	// import CustomSwitch from "@/component/customSwitch.vue"
+	
 	import {
 		getFunctionTag,
 	} from '@/common/storage.js';
@@ -296,14 +296,7 @@
 			}
 		},
 		methods: {
-			// async loadData() {
-			// 				return new Promise((resolve) => {
-			// 					setTimeout(resolve, 1000); // 模拟 5 秒请求时间
-			// 				});
-			// 			},
-			// 			changeValue(test){
-			// 				this.switchValue=test
-			// 			},
+			
 			init() {
 				
 				this.loadModelList()