|
@@ -15,8 +15,10 @@
|
|
<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 :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 class="power-on-text" >滑动启动</view>
|
|
</view> -->
|
|
</view> -->
|
|
- <custom-switch :width="'400rpx'"
|
|
|
|
|
|
+ <custom-switch @changEnd='changEnd' :width="'400rpx'"
|
|
:height="'96rpx'" :modelValue="switchValue" :fetchData="loadData"></custom-switch>
|
|
:height="'96rpx'" :modelValue="switchValue" :fetchData="loadData"></custom-switch>
|
|
|
|
+
|
|
|
|
+
|
|
<!-- <custom-switch :defaultPosition="'right'" :width="'400rpx'"
|
|
<!-- <custom-switch :defaultPosition="'right'" :width="'400rpx'"
|
|
:height="'96rpx'" v-model="switchValue" :fetchData="loadData"></custom-switch> -->
|
|
:height="'96rpx'" v-model="switchValue" :fetchData="loadData"></custom-switch> -->
|
|
<view @tap="navToInputPages" class="car-change-battery flex-row">
|
|
<view @tap="navToInputPages" class="car-change-battery flex-row">
|
|
@@ -128,12 +130,25 @@ export default {
|
|
// setTimeout(()=>{
|
|
// setTimeout(()=>{
|
|
this.switchValue.state=uni.getStorageSync('car_info').acc_state==1
|
|
this.switchValue.state=uni.getStorageSync('car_info').acc_state==1
|
|
// },50)
|
|
// },50)
|
|
|
|
+
|
|
|
|
+ // setTimeout(()=>{
|
|
|
|
+ // console.log(this.switchValue)
|
|
|
|
+ // },5000)
|
|
|
|
+
|
|
},
|
|
},
|
|
|
|
|
|
/**
|
|
/**
|
|
* 组件的方法列表
|
|
* 组件的方法列表
|
|
*/
|
|
*/
|
|
methods: {
|
|
methods: {
|
|
|
|
+ changEnd(e){
|
|
|
|
+ this.switchValue = JSON.parse(e)
|
|
|
|
+ if(this.switchValue.type==1){
|
|
|
|
+ const car_sn= uni.getStorageSync('car_info').car_sn
|
|
|
|
+ this.$emit('loadCarDetail',car_sn)
|
|
|
|
+ }
|
|
|
|
+ console.log(this.switchValue)
|
|
|
|
+ },
|
|
tapOpen(e){
|
|
tapOpen(e){
|
|
const item = e.currentTarget.dataset.item;
|
|
const item = e.currentTarget.dataset.item;
|
|
this.changClick(item)
|
|
this.changClick(item)
|
|
@@ -212,12 +227,9 @@ export default {
|
|
confirmText: '前往购买',
|
|
confirmText: '前往购买',
|
|
success: function(res) {
|
|
success: function(res) {
|
|
if (res.confirm) {
|
|
if (res.confirm) {
|
|
- if(isCarLocation){
|
|
|
|
- uni.navigateTo({
|
|
|
|
- url: `/pages/batteryPackage/batteryPackage`
|
|
|
|
- })
|
|
|
|
- }else{
|
|
|
|
- }
|
|
|
|
|
|
+ uni.navigateTo({
|
|
|
|
+ url: `/pages/batteryPackage/batteryPackage`
|
|
|
|
+ })
|
|
|
|
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -246,22 +258,19 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
|
|
- async loadData() {
|
|
|
|
|
|
+ async loadData(state) {
|
|
|
|
+ // console.log(state,'state');
|
|
return new Promise((resolve,reject) => {
|
|
return new Promise((resolve,reject) => {
|
|
if (uni.getStorageSync('car_info').online==1) {
|
|
if (uni.getStorageSync('car_info').online==1) {
|
|
//开机1 关机0
|
|
//开机1 关机0
|
|
const car_sn= uni.getStorageSync('car_info').car_sn;
|
|
const car_sn= uni.getStorageSync('car_info').car_sn;
|
|
- const switchType= uni.getStorageSync('car_info').acc_state==1?0:1;
|
|
|
|
|
|
+ const switchType= state?0:1;
|
|
const pData = {
|
|
const pData = {
|
|
car_sn,
|
|
car_sn,
|
|
switch: switchType
|
|
switch: switchType
|
|
}
|
|
}
|
|
const me=this
|
|
const me=this
|
|
- common.loading();
|
|
|
|
http.postApi(config.API_FLK_CAR_SWITCH, pData, (resp) => {
|
|
http.postApi(config.API_FLK_CAR_SWITCH, pData, (resp) => {
|
|
- uni.hideLoading();
|
|
|
|
- console.log(resp.data)
|
|
|
|
-
|
|
|
|
if (resp.data.code === 200) {
|
|
if (resp.data.code === 200) {
|
|
//const textStr = (this.switchValue==0)?'开机':'关机'
|
|
//const textStr = (this.switchValue==0)?'开机':'关机'
|
|
|
|
|
|
@@ -279,22 +288,32 @@ export default {
|
|
// })
|
|
// })
|
|
|
|
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
- resolve()
|
|
|
|
- //this.switchValue=!this.switchValue
|
|
|
|
- this.switchValue = JSON.stringify({
|
|
|
|
- state:!this.switchValue.state,
|
|
|
|
|
|
+
|
|
|
|
+ resolve(JSON.stringify({
|
|
|
|
+ state:!state,
|
|
|
|
+ type:1,
|
|
time: Math.floor(Date.now() / 1000)
|
|
time: Math.floor(Date.now() / 1000)
|
|
- })
|
|
|
|
|
|
+ }))
|
|
|
|
+ console.log(132);
|
|
|
|
+
|
|
|
|
+ // me.switchValue = JSON.stringify({
|
|
|
|
+ // state:!state,
|
|
|
|
+ // time: Math.floor(Date.now() / 1000)
|
|
|
|
+ // })
|
|
}, 1000)
|
|
}, 1000)
|
|
- me.$emit('loadCarDetail',pData.car_sn)
|
|
|
|
|
|
+
|
|
} else {
|
|
} else {
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
- resolve()
|
|
|
|
- //this.switchValue=!this.switchValue
|
|
|
|
- this.switchValue = JSON.stringify({
|
|
|
|
- state:this.switchValue.state,
|
|
|
|
|
|
+ resolve(JSON.stringify({
|
|
|
|
+ state:state,
|
|
|
|
+ type:2,
|
|
time:Math.floor(Date.now() / 1000)
|
|
time:Math.floor(Date.now() / 1000)
|
|
- })
|
|
|
|
|
|
+ }))
|
|
|
|
+ //this.switchValue=!this.switchValue
|
|
|
|
+ // this.switchValue = JSON.stringify({
|
|
|
|
+ // state:this.switchValue.state,
|
|
|
|
+ // time:Math.floor(Date.now() / 1000)
|
|
|
|
+ // })
|
|
// common.simpleToast(resp.data.msg);
|
|
// common.simpleToast(resp.data.msg);
|
|
}, 1000)
|
|
}, 1000)
|
|
//setTimeout(resolve, 1000);
|
|
//setTimeout(resolve, 1000);
|
|
@@ -304,8 +323,9 @@ export default {
|
|
}else{
|
|
}else{
|
|
//车辆离线
|
|
//车辆离线
|
|
const car_sn= uni.getStorageSync('car_info').car_sn;
|
|
const car_sn= uni.getStorageSync('car_info').car_sn;
|
|
|
|
+ const switchType= state;
|
|
common.loading();
|
|
common.loading();
|
|
- if (type==1) {
|
|
|
|
|
|
+ if (!switchType) {
|
|
bluetooth.turnOnCar(car_sn, () => {
|
|
bluetooth.turnOnCar(car_sn, () => {
|
|
uni.hideLoading();
|
|
uni.hideLoading();
|
|
});
|
|
});
|