liuwei 3 天之前
父節點
當前提交
f9fd73aed2
共有 4 個文件被更改,包括 34 次插入35 次删除
  1. 1 2
      common/http.js
  2. 3 10
      component/customSwitch.vue
  3. 28 22
      pages/index/components/control/control.vue
  4. 2 1
      pages/index/index.vue

+ 1 - 2
common/http.js

@@ -125,7 +125,7 @@ function postRequest(url, data, successCallBack, failCallBack) {
 				return
 			} else {
 				successCallBack(res);
-				//uni.showToast({ title: res.data.msg, icon: 'none' })
+				// uni.showToast({ title: res.data.msg, icon: 'none' })
 				return
 			}
 			if (_checkTokenValid(res)) {
@@ -142,7 +142,6 @@ function postRequest(url, data, successCallBack, failCallBack) {
 					showCancel: false
 				});
 			}
-
 			failCallBack(res);
 		}
 	});

+ 3 - 10
component/customSwitch.vue

@@ -9,14 +9,13 @@
 			<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,
+			modelValue: String,
 			imageSrc: {
 				type: String,
 				default: "https://qiniu.bms16.com/Fkovrpq1bexe-Unal_VJREbLUhdu" // 默认滑块图片
@@ -54,16 +53,12 @@
 		},
 		watch: {
 			modelValue(newValue) {
-				console.log(newValue,"值变动")
-				this.isValue = newValue
+				// console.log(newValue,"值变动")
+				this.isValue = JSON.parse(newValue).state
 				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() {
@@ -74,11 +69,9 @@
 				} 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() {

+ 28 - 22
pages/index/components/control/control.vue

@@ -16,7 +16,7 @@
 				<view class="power-on-text" >滑动启动</view>
 			</view> -->
 			<custom-switch  :width="'400rpx'"
-				:height="'96rpx'"  :modelValue="switchValue" :fetchData="loadData" @changeValue="changeValue"></custom-switch>
+				:height="'96rpx'"  :modelValue="switchValue" :fetchData="loadData"></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">
@@ -107,7 +107,7 @@ export default {
 			// popText:'',
 			// popupControlShow:false,
 			// controlType:null,//选择的车辆控制
-			switchValue: false,
+			switchValue: {state:false,time:0},
 			isShowMore:false,
 			car_line:false,
 			// startX: 0, // 滑块开始滑动的初始位置
@@ -127,7 +127,7 @@ export default {
 	mounted() {
 		// this.contrilList = getFunctionTag().activeTag
 		// setTimeout(()=>{
-			this.switchValue=uni.getStorageSync('car_info').acc_state==1
+			this.switchValue.state=uni.getStorageSync('car_info').acc_state==1
 		// },50)
 	},
  
@@ -246,6 +246,7 @@ export default {
 				return
 			}
 		},
+		
 		async loadData() {
 			return new Promise((resolve,reject) => {
 				if (uni.getStorageSync('car_info').online==1) {
@@ -256,17 +257,15 @@ export default {
 									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")
+									console.log(resp.data)
+									
 									if (resp.data.code === 200) {
-										const textStr = (this.switchValue==0)?'开机':'关机'
-										this.switchValue=!this.switchValue
-										
-										common.simpleToast(textStr + '成功');
+										//const textStr = (this.switchValue==0)?'开机':'关机'
+	
 										// const activeTag = me.contrilList.map(item => {
 										// 	if('isLock' in item){
 										// 		item.isTurnOn = (item.isTurnOn == 1) ? 0 : 1
@@ -279,20 +278,31 @@ export default {
 										// 	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()
+											//this.switchValue=!this.switchValue
+											this.switchValue = JSON.stringify({
+												state:!this.switchValue.state,
+												time: Math.floor(Date.now() / 1000)
+											})
+										}, 1000)
+										me.$emit('loadCarDetail',pData.car_sn)
+									} else {
+										 setTimeout(() => {
+										 	resolve()
+										 	//this.switchValue=!this.switchValue
+										 	this.switchValue = JSON.stringify({
+										 		state:this.switchValue.state,
+										 		time:Math.floor(Date.now() / 1000)
+										 	})
+											// common.simpleToast(resp.data.msg);
+										 }, 1000)
 										//setTimeout(resolve, 1000);
-										common.simpleToast(resp.data.msg);
+										
 									}
 								});
 							}else{
-								console.log("xxxxx2")
 								//车辆离线
 								const car_sn= uni.getStorageSync('car_info').car_sn;
 								common.loading();
@@ -310,10 +320,6 @@ export default {
 				// // this.trunOn()
 				// setTimeout(resolve, 1000); // 模拟 5 秒请求时间
 			});
-		},
-		changeValue(test){
-			console.log(test);
-			this.switchValue=test
 		}
 		// tapOpen(e){
 		// 	this.carOnline=this.online

+ 2 - 1
pages/index/index.vue

@@ -467,6 +467,7 @@
 					car_sn
 				}, (resp) => {
 					uni.hideLoading();
+					console.log(resp.data)
 					if (resp.data.code === 200) {
 						resp.data.data.car_sn = car_sn
 						const _car_image=resp.data.data.model_images?resp.data.data.model_images.split(','):[]
@@ -487,7 +488,7 @@
 						}
 
 					} else {
-						common.simpleToast(resp.data.msg);
+						// common.simpleToast(resp.data.msg);
 					}
 				})
 			},