|
@@ -15,7 +15,8 @@ export default {
|
|
|
popText:'',
|
|
|
cmdType:'',
|
|
|
myLocation:{},
|
|
|
- popupControlShow:false
|
|
|
+ popupControlShow:false,
|
|
|
+ car_detail:{}
|
|
|
};
|
|
|
},
|
|
|
onLoad(){
|
|
@@ -23,6 +24,8 @@ export default {
|
|
|
this.locationMiXin()
|
|
|
},
|
|
|
mounted(){
|
|
|
+ console.log(this.isConnectBlueth,'isConnectBlueth');
|
|
|
+ this.car_detail=uni.getStorageSync('car_info')
|
|
|
this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight || 0
|
|
|
},
|
|
|
methods: {
|
|
@@ -34,7 +37,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
tapOpenControl(e){
|
|
|
- const _carOnline= uni.getStorageSync('car_info').online == 1 //在线
|
|
|
+ const _carOnline= this.car_detail.online == 1 //在线
|
|
|
console.log('_carOnline',this._carOnline);
|
|
|
const {name,type}=e
|
|
|
this.setData({
|
|
@@ -65,27 +68,14 @@ export default {
|
|
|
},
|
|
|
tapBlueToothCmd(cmd,type){
|
|
|
console.log(cmd,type,'cmd,type');
|
|
|
- const car_info= uni.getStorageSync('car_info');
|
|
|
+ const car_info= this.car_detail;
|
|
|
const isCarLocation = (cmd=='more')?true:type
|
|
|
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) {},
|
|
|
- })
|
|
|
+ this.getCarAddressName()
|
|
|
//获取胎压
|
|
|
}else if(this.cmdType=='tirePressure'){
|
|
|
this.bluetoothCmd()
|
|
@@ -148,10 +138,10 @@ export default {
|
|
|
},
|
|
|
bluetoothCmd(isCarLocation){
|
|
|
const me=this
|
|
|
- const car_info= uni.getStorageSync('car_info');
|
|
|
+ const car_info= this.car_detail;
|
|
|
const app = getApp();
|
|
|
- console.log('test',app.globalData.connectionState[car_info.car_sn]);
|
|
|
//蓝牙是否已经连接 未连接提示去连接 已连接下发对应指令
|
|
|
+ if(Object.keys(app.globalData.connectionState).length === 0) return
|
|
|
const isBluetoothConnect = app.globalData.connectionState[car_info.car_sn].device
|
|
|
if(isBluetoothConnect){
|
|
|
//改成判断开关锁
|
|
@@ -165,7 +155,7 @@ export default {
|
|
|
};
|
|
|
common.loading();
|
|
|
const command = bluetoothCommands[this.cmdType];
|
|
|
- const car_sn = uni.getStorageSync('car_info').car_sn
|
|
|
+ const car_sn = this.car_detail.car_sn
|
|
|
if (command) {
|
|
|
command(car_sn, () => {
|
|
|
uni.hideLoading();
|
|
@@ -176,35 +166,64 @@ export default {
|
|
|
});
|
|
|
}
|
|
|
}else{
|
|
|
- uni.showModal({
|
|
|
- title: '提示',
|
|
|
- content: '当前车辆处于离线,是否前往开启蓝牙配对操作车辆?',
|
|
|
- showCancel: true,
|
|
|
- cancelText: '取消',
|
|
|
- confirmText: '确定',
|
|
|
- success: function(res) {
|
|
|
- if (res.confirm) {
|
|
|
- if(isCarLocation){
|
|
|
- uni.switchTab({
|
|
|
- url:'/pages/index/index'
|
|
|
- })
|
|
|
- }else{
|
|
|
- me.$emit('toBluetooth')
|
|
|
- }
|
|
|
+ // uni.showModal({
|
|
|
+ // title: '提示',
|
|
|
+ // content: '当前车辆处于离线,是否前往开启蓝牙配对操作车辆?',
|
|
|
+ // showCancel: true,
|
|
|
+ // cancelText: '取消',
|
|
|
+ // confirmText: '确定',
|
|
|
+ // success: function(res) {
|
|
|
+ // if (res.confirm) {
|
|
|
+ // if(isCarLocation){
|
|
|
+ // uni.switchTab({
|
|
|
+ // url:'/pages/index/index'
|
|
|
+ // })
|
|
|
+ // }else{
|
|
|
+ // me.$emit('toBluetooth')
|
|
|
+ // }
|
|
|
|
|
|
- }
|
|
|
- },
|
|
|
- fail: function(res) {},
|
|
|
- complete: function(res) {},
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ // fail: function(res) {},
|
|
|
+ // complete: function(res) {},
|
|
|
+ // })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ async getCarAddressName() {
|
|
|
+ const that = this
|
|
|
+ //#ifdef MP-ALIPAY
|
|
|
+ var _pi = "ali_index"
|
|
|
+ //#endif
|
|
|
+ //#ifdef MP-WEIXIN
|
|
|
+ var _pi = "wx_index"
|
|
|
+ //#endif
|
|
|
+ //#ifdef APP
|
|
|
+ var _pi = "APP"
|
|
|
+ //#endif
|
|
|
+ const location = {
|
|
|
+ lat: this.car_detail.latitude,
|
|
|
+ lng: this.car_detail.longitude,
|
|
|
+ pi: _pi
|
|
|
+ }
|
|
|
+ let {data} = await http.postApi(config.API_MAP_REGEO, location)
|
|
|
+ if(data.code == 200){
|
|
|
+ console.log(data,'data.data.data');
|
|
|
+ const address = data.data.data.address
|
|
|
+ const {
|
|
|
+ latitude,
|
|
|
+ longitude,
|
|
|
+ car_name
|
|
|
+ } =this.car_detail
|
|
|
+ uni.openLocation({
|
|
|
+ latitude: latitude - 0,
|
|
|
+ longitude: longitude - 0,
|
|
|
+ scale: 15,
|
|
|
+ name: car_name,
|
|
|
+ address: address,
|
|
|
+ success: function (res) {},
|
|
|
})
|
|
|
}
|
|
|
},
|
|
|
- // async loadData() {
|
|
|
- // return new Promise((resolve) => {
|
|
|
- // // setTimeout(resolve, 1000); // 模拟 5 秒请求时间
|
|
|
- // // this.trunOn(resolve)
|
|
|
- // });
|
|
|
- // },
|
|
|
|
|
|
},
|
|
|
|