|
@@ -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"></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">
|
|
@@ -77,7 +79,8 @@
|
|
|
var config = require('@/common/config.js');
|
|
|
var common = require('@/common/common.js');
|
|
|
var http = require('@/common/http.js');
|
|
|
- // import CustomSwitch from '@/component/customSwitch.vue'; // 引入组件
|
|
|
+ import CustomSwitch from '@/component/customSwitch.vue'; // 引入组件
|
|
|
+
|
|
|
import controlMixin from '@/mixin/index';
|
|
|
import i18n from '@/locale/index.js'
|
|
|
import {
|
|
@@ -86,6 +89,7 @@
|
|
|
} from '@/common/storage.js';
|
|
|
export default {
|
|
|
mixins: [controlMixin],
|
|
|
+ components:{CustomSwitch},
|
|
|
props:{
|
|
|
contrilList: {
|
|
|
type: Array,
|
|
@@ -102,12 +106,13 @@ export default {
|
|
|
// popText:'',
|
|
|
// popupControlShow:false,
|
|
|
// controlType:null,//选择的车辆控制
|
|
|
- switchValue: false,
|
|
|
+ switchValue: {state:false,time:0},
|
|
|
isShowMore:false,
|
|
|
car_line:false,
|
|
|
- startX: 0, // 滑块开始滑动的初始位置
|
|
|
- moveX: 0, // 滑块滑动的距离
|
|
|
- unlocked: false, // 是否解锁成功的标志
|
|
|
+ // startX: 0, // 滑块开始滑动的初始位置
|
|
|
+ // moveX: 0, // 滑块滑动的距离
|
|
|
+ // unlocked: false, // 是否解锁成功的标志
|
|
|
+
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -120,6 +125,9 @@ export default {
|
|
|
},
|
|
|
mounted() {
|
|
|
// this.contrilList = getFunctionTag().activeTag
|
|
|
+ // setTimeout(()=>{
|
|
|
+ this.switchValue.state=uni.getStorageSync('car_info').acc_state==1
|
|
|
+ // },50)
|
|
|
},
|
|
|
|
|
|
/**
|
|
@@ -135,26 +143,183 @@ 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
|
|
|
+ }
|
|
|
+ const me=this
|
|
|
+ common.loading();
|
|
|
+ http.postApi(config.API_FLK_CAR_SWITCH, pData, (resp) => {
|
|
|
+ uni.hideLoading();
|
|
|
+ console.log(resp.data)
|
|
|
+
|
|
|
+ if (resp.data.code === 200) {
|
|
|
+ //const textStr = (this.switchValue==0)?'开机':'关机'
|
|
|
+
|
|
|
+ // 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()
|
|
|
+ //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);
|
|
|
+
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }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();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // console.log(me.switchValue,'this.switchValue');
|
|
|
+ // // this.trunOn()
|
|
|
+ // setTimeout(resolve, 1000); // 模拟 5 秒请求时间
|
|
|
+ });
|
|
|
+ }
|
|
|
// tapOpen(e){
|
|
|
// this.carOnline=this.online
|
|
|
// console.log( getFunctionTag().activeTag, getFunctionTag());
|