|
@@ -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
|