|
@@ -10,7 +10,7 @@
|
|
|
<text>{{$t("更多功能")}}</text>
|
|
|
</view>
|
|
|
</scroll-view>
|
|
|
- <view v-if="popupShow" class="show-modal">
|
|
|
+ <view v-if="popupControlShow" class="show-modal">
|
|
|
<view class="modal-info">
|
|
|
<view class="popup-title">{{$t(popText)}}</view>
|
|
|
<view class="popup-content">{{$t("您确认")+$t(popText)}}</view>
|
|
@@ -20,7 +20,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <!-- <u-popup v-model="popupShow" mode="center" border-radius="30" height="30%" length="60%">
|
|
|
+ <!-- <u-popup v-model="popupControlShow" mode="center" border-radius="30" height="30%" length="60%">
|
|
|
<view class="popup-title">开启车辆</view>
|
|
|
<view class="popup-content">确定打开</view>
|
|
|
<view class="flex-row">
|
|
@@ -67,28 +67,30 @@
|
|
|
var config = require('@/common/config.js');
|
|
|
var common = require('@/common/common.js');
|
|
|
var http = require('@/common/http.js');
|
|
|
+ import controlMixin from '@/mixin/index';
|
|
|
import i18n from '@/locale/index.js'
|
|
|
import {
|
|
|
getFunctionTag,
|
|
|
setFunctionTag
|
|
|
} from '@/common/storage.js';
|
|
|
export default {
|
|
|
+ mixins: [controlMixin],
|
|
|
props:{
|
|
|
contrilList: {
|
|
|
type: Array,
|
|
|
default: () => []
|
|
|
},
|
|
|
- accState: {
|
|
|
- type: Number,
|
|
|
- default: 0
|
|
|
+ online: {
|
|
|
+ type: Boolean,
|
|
|
+ default: false
|
|
|
},
|
|
|
},
|
|
|
|
|
|
data() {
|
|
|
return {
|
|
|
- popText:'',
|
|
|
- popupShow:false,
|
|
|
- controlType:null,//选择的车辆控制
|
|
|
+ // popText:'',
|
|
|
+ // popupControlShow:false,
|
|
|
+ // controlType:null,//选择的车辆控制
|
|
|
isShowMore:false,
|
|
|
car_line:false
|
|
|
};
|
|
@@ -102,126 +104,154 @@ export default {
|
|
|
*/
|
|
|
methods: {
|
|
|
tapOpen(e){
|
|
|
- console.log( getFunctionTag().activeTag, getFunctionTag());
|
|
|
- const {name,type} = e.currentTarget.dataset.item;
|
|
|
- this.setData({
|
|
|
- popText:name,
|
|
|
- cmdType:type,
|
|
|
- popupShow:true
|
|
|
- })
|
|
|
- },
|
|
|
- tapBlueToothCmd(){
|
|
|
- const car_info= uni.getStorageSync('car_info');
|
|
|
-
|
|
|
- // 判断车辆是否在线状态
|
|
|
- if (this.car_line) {
|
|
|
- if(this.cmdType=='batteryInfo'){
|
|
|
- uni.navigateTo({
|
|
|
- url:`/pages/batteryDetail/batteryDetail`
|
|
|
- })
|
|
|
- }else if(this.cmdType=='navigation'){
|
|
|
- const {
|
|
|
- address,
|
|
|
- latitude,
|
|
|
- longitude,
|
|
|
- car_name
|
|
|
- } =car_info
|
|
|
- uni.openLocation({
|
|
|
- latitude: latitude - 0,
|
|
|
- longitude: longitude - 0,
|
|
|
- scale: 15,
|
|
|
- name: car_name,
|
|
|
- address: address,
|
|
|
- success: function (res) {},
|
|
|
- })
|
|
|
- }else if(this.cmdType=='turnOnOrOff'){
|
|
|
- const switchType=this.contrilList.find(item => item.isTurnOn)
|
|
|
- const pData={
|
|
|
- car_sn:car_info.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=>{
|
|
|
- item.isTurnOn=(item.isTurnOn==1)?0:1
|
|
|
- item.name=i18n.t((item.isTurnOn==1)?'关机':'开机')
|
|
|
- return item
|
|
|
- })
|
|
|
- const tag=getFunctionTag().tag
|
|
|
- setFunctionTag({activeTag,tag})
|
|
|
-
|
|
|
- } else {
|
|
|
- common.simpleToast(resp.data.msg);
|
|
|
- }
|
|
|
- });
|
|
|
- }else{
|
|
|
- const testArr=[
|
|
|
- {type:'findCar',opt_type:1},
|
|
|
- {type:'openSeatBag',opt_type:0},
|
|
|
- {type:'openTailBox',opt_type:2},
|
|
|
- ]
|
|
|
- const pData = testArr.find(i=>i.type===this.cmdType)
|
|
|
- const me=this
|
|
|
- common.loading();
|
|
|
- http.postApi(config.API_FLK_CAR_REMOTE_CONTROL, pData, (resp) => {
|
|
|
- uni.hideLoading();
|
|
|
- if (resp.data.code === 200) {
|
|
|
- common.simpleToast(me.popText + '成功');
|
|
|
- } else {
|
|
|
- common.simpleToast(resp.data.msg);
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
- } else {
|
|
|
- const isTurnOn=this.contrilList.find(item => item.isTurnOn).isTurnOn==1
|
|
|
- console.log(isTurnOn,this.cmdType,this.contrilList);
|
|
|
- const bluetoothCommands = {
|
|
|
- 'turnOnOrOff': isTurnOn?bluetooth.turnOnCar:bluetooth.turnOffCar,
|
|
|
- 'findCar': bluetooth.findCarCmd,
|
|
|
- 'openSeatBag': bluetooth.openCarSeat,
|
|
|
- 'openTailBox': bluetooth.openCarTrunk,
|
|
|
- 'tirePressure': bluetooth.getCarPressure
|
|
|
- };
|
|
|
-
|
|
|
- common.loading();
|
|
|
- const command = bluetoothCommands[this.cmdType];
|
|
|
- if (command) {
|
|
|
- command('900000997', () => {
|
|
|
- uni.hideLoading();
|
|
|
- console.log(`发送${this.popText}指令结束`);
|
|
|
- });
|
|
|
- }
|
|
|
- }
|
|
|
- this.popupShow=false
|
|
|
-
|
|
|
- },
|
|
|
- closePopup(){
|
|
|
- this.popupShow=false
|
|
|
- },
|
|
|
- tapOpenMore(){
|
|
|
- // this.isShowMore=true
|
|
|
- },
|
|
|
- closeMore(){
|
|
|
- this.isShowMore=false
|
|
|
- },
|
|
|
- navUrl(url){
|
|
|
- // ifconsole.log(url,'sj');
|
|
|
- },
|
|
|
- navCarLocation(){
|
|
|
- //前往配置更多功能
|
|
|
- uni.navigateTo({
|
|
|
- url:'/pages/carLocation/carLocation'
|
|
|
- })
|
|
|
+ const item = e.currentTarget.dataset.item;
|
|
|
+ this.changClick(item)
|
|
|
},
|
|
|
toMoreFunctionSet() {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pages/carFunctionSet/more'
|
|
|
+ url: '/pages/carFunctionSet/more?online='+this.online
|
|
|
})
|
|
|
}
|
|
|
+ // tapOpen(e){
|
|
|
+ // this.carOnline=this.online
|
|
|
+ // console.log( getFunctionTag().activeTag, getFunctionTag());
|
|
|
+ // const {name,type} = e.currentTarget.dataset.item;
|
|
|
+ // this.setData({
|
|
|
+ // popText:name,
|
|
|
+ // cmdType:type,
|
|
|
+ // popupControlShow:true
|
|
|
+ // })
|
|
|
+ // },
|
|
|
+ // tapBlueToothCmd(){
|
|
|
+ // const car_info= uni.getStorageSync('car_info');
|
|
|
+ // const me=this
|
|
|
+ // // 判断车辆是否在线状态 true 在线调用接口 不在线提示连接蓝牙
|
|
|
+ // if (this.online) {
|
|
|
+ // if(this.cmdType=='batteryInfo'){
|
|
|
+ // uni.navigateTo({
|
|
|
+ // url:`/pages/batteryDetail/batteryDetail`
|
|
|
+ // })
|
|
|
+ // }else if(this.cmdType=='navigation'){
|
|
|
+ // const {
|
|
|
+ // address,
|
|
|
+ // latitude,
|
|
|
+ // longitude,
|
|
|
+ // car_name
|
|
|
+ // } =car_info
|
|
|
+ // uni.openLocation({
|
|
|
+ // latitude: latitude - 0,
|
|
|
+ // longitude: longitude - 0,
|
|
|
+ // scale: 15,
|
|
|
+ // name: car_name,
|
|
|
+ // address: address,
|
|
|
+ // success: function (res) {},
|
|
|
+ // })
|
|
|
+ // }else if(this.cmdType=='turnOnOrOff'){
|
|
|
+ // const switchType=this.contrilList.find(item => item.isTurnOn)
|
|
|
+ // const pData={
|
|
|
+ // car_sn:car_info.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=>{
|
|
|
+ // item.isTurnOn=(item.isTurnOn==1)?0:1
|
|
|
+ // item.name=i18n.t((item.isTurnOn==1)?'关机':'开机')
|
|
|
+ // return item
|
|
|
+ // })
|
|
|
+ // const tag=getFunctionTag().tag
|
|
|
+ // setFunctionTag({activeTag,tag})
|
|
|
+
|
|
|
+ // } else {
|
|
|
+ // common.simpleToast(resp.data.msg);
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // }else{
|
|
|
+ // const testArr=[
|
|
|
+ // {type:'findCar',opt_type:1},
|
|
|
+ // {type:'openSeatBag',opt_type:0},
|
|
|
+ // {type:'openTailBox',opt_type:2},
|
|
|
+ // ]
|
|
|
+ // const pData = testArr.find(i=>i.type===this.cmdType)
|
|
|
+ // const me=this
|
|
|
+ // common.loading();
|
|
|
+ // http.postApi(config.API_FLK_CAR_REMOTE_CONTROL, pData, (resp) => {
|
|
|
+ // uni.hideLoading();
|
|
|
+ // if (resp.data.code === 200) {
|
|
|
+ // common.simpleToast(me.popText + '成功');
|
|
|
+ // } else {
|
|
|
+ // common.simpleToast(resp.data.msg);
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // }
|
|
|
+ // } else {
|
|
|
+ // //蓝牙是否已经连接 未连接提示去连接 已连接下发对应指令
|
|
|
+ // const isBluetoothConnect = app.globalData.connectionStateChangeFunc[car_info.car_sn]
|
|
|
+ // if(isBluetoothConnect){
|
|
|
+ // const isTurnOn=this.contrilList.find(item => item.isTurnOn).isTurnOn==1
|
|
|
+ // console.log(isTurnOn,this.cmdType,this.contrilList);
|
|
|
+ // const bluetoothCommands = {
|
|
|
+ // 'turnOnOrOff': isTurnOn?bluetooth.turnOnCar:bluetooth.turnOffCar,
|
|
|
+ // 'findCar': bluetooth.findCarCmd,
|
|
|
+ // 'openSeatBag': bluetooth.openCarSeat,
|
|
|
+ // 'openTailBox': bluetooth.openCarTrunk,
|
|
|
+ // 'tirePressure': bluetooth.getCarPressure
|
|
|
+ // };
|
|
|
+ // common.loading();
|
|
|
+ // const command = bluetoothCommands[this.cmdType];
|
|
|
+ // if (command) {
|
|
|
+ // command('900000997', () => {
|
|
|
+ // uni.hideLoading();
|
|
|
+ // if(this.cmdType=='openSeatBag'||this.cmdType=='openTailBox'){
|
|
|
+ // common.simpleToast('操作成功');
|
|
|
+ // }
|
|
|
+ // console.log(`发送${this.popText}指令结束`);
|
|
|
+ // });
|
|
|
+ // }
|
|
|
+ // }else{
|
|
|
+ // uni.showModal({
|
|
|
+ // title: '提示',
|
|
|
+ // content: '当前车辆处于离线,是否前往开启蓝牙配对操作车辆?',
|
|
|
+ // showCancel: true,
|
|
|
+ // cancelText: '取消',
|
|
|
+ // confirmText: '确定',
|
|
|
+ // success: function(res) {
|
|
|
+ // if (res.confirm) {
|
|
|
+ // me.$emit('toBluetooth')
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ // fail: function(res) {},
|
|
|
+ // complete: function(res) {},
|
|
|
+ // })
|
|
|
+ // }
|
|
|
+
|
|
|
+ // }
|
|
|
+ // this.popupControlShow=false
|
|
|
+
|
|
|
+ // },
|
|
|
+ // // closePopup(){
|
|
|
+ // this.popupControlShow=false
|
|
|
+ // },
|
|
|
+ // tapOpenMore(){
|
|
|
+ // // this.isShowMore=true
|
|
|
+ // },
|
|
|
+ // closeMore(){
|
|
|
+ // this.isShowMore=false
|
|
|
+ // },
|
|
|
+ // navUrl(url){
|
|
|
+ // // ifconsole.log(url,'sj');
|
|
|
+ // },
|
|
|
+ // navCarLocation(){
|
|
|
+ // //前往配置更多功能
|
|
|
+ // uni.navigateTo({
|
|
|
+ // url:'/pages/carLocation/carLocation'
|
|
|
+ // })
|
|
|
+ // },
|
|
|
+
|
|
|
}
|
|
|
};
|
|
|
</script>
|