Commit da787828 authored by xinzhedeai's avatar xinzhedeai

测量值0显示、粘包问题数据格式吹了

parent da6fbc73
...@@ -7,7 +7,8 @@ import { ...@@ -7,7 +7,8 @@ import {
commonStateCodeDeal, commonStateCodeDeal,
blueToother, blueToother,
storager, storager,
popuper popuper,
otherUtils
} from './util.js' } from './util.js'
const blueToothMixin = { const blueToothMixin = {
...@@ -320,8 +321,8 @@ const blueToothMixin = { ...@@ -320,8 +321,8 @@ const blueToothMixin = {
that.setNavBarTitle('特征值UUID值不匹配') that.setNavBarTitle('特征值UUID值不匹配')
commonStateCodeDeal(2, '特征值UUID值不匹配onBLECharacteristicValueChange') commonStateCodeDeal(2, '特征值UUID值不匹配onBLECharacteristicValueChange')
return; return;
} }
console.log('recStr*****', recStr) console.log('recStr*****', recStr)
if(recStr === 'HEART'){ // 心跳监测 if(recStr === 'HEART'){ // 心跳监测
blueToother.writeBLECharacteristicValue('HEART') blueToother.writeBLECharacteristicValue('HEART')
...@@ -334,7 +335,13 @@ const blueToothMixin = { ...@@ -334,7 +335,13 @@ const blueToothMixin = {
recStr = recStr.split('HEART')[0] recStr = recStr.split('HEART')[0]
} }
// 设置电量值: // 设置电量值:
const recBlueResData = JSON.parse(recStr) // const recBlueResData = JSON.parse(recStr)
// 返回值粘包处理
const recBlueResData = otherUtils.parseJsonString(recStr)
if(!recBlueResData){ // 如果解析后的数据为null 则直接返回不进行下面的业务逻辑
return
}
console.log('设备检测值:', JSON.stringify(recBlueResData)) console.log('设备检测值:', JSON.stringify(recBlueResData))
const qiuId = recBlueResData.id const qiuId = recBlueResData.id
...@@ -385,16 +392,16 @@ const blueToothMixin = { ...@@ -385,16 +392,16 @@ const blueToothMixin = {
this.$store.commit('setMeasureVal', { this.$store.commit('setMeasureVal', {
actualHeat: parseFloat(temp4wd.toFixed(2)), // 默认回传单位为摄氏度 actualHeat: parseFloat(temp4wd.toFixed(2)), // 默认回传单位为摄氏度
}) })
commonStateCodeDeal(2, '监听到设备反馈信息->测量温度'+temp4wd) commonStateCodeDeal(2, '监听到设备反馈信息->测量温度~'+temp4wd)
} }
// 接收到监测值,回复主机DATAOK // 接收到监测值,回复主机DATAOK
if(ks || ss){ if(ks || ss){
blueToother.writeBLECharacteristicValue('DATAOK') blueToother.writeBLECharacteristicValue('DATAOK')
} }
// 接收到监测值,回复主机TEMPOK // 接收到监测值,回复主机DATAOK
if(wd){ if(wd){
blueToother.writeBLECharacteristicValue('TEMPOK') blueToother.writeBLECharacteristicValue('DATAOK')
} }
}); });
} else { } else {
......
...@@ -551,10 +551,35 @@ var dateUtils = { ...@@ -551,10 +551,35 @@ var dateUtils = {
} }
}; };
var otherUtils = {
parseJsonString: function (str) {
// 查找第一个'{'和最后一个'}'的位置
const startIndex = str.indexOf('{');
const endIndex = str.lastIndexOf('}');
// 验证括号位置有效性
if (startIndex === -1 || endIndex === -1 || endIndex <= startIndex) {
return null;
}
try {
// 截取有效JSON部分并解析
const jsonString = str.slice(startIndex, endIndex + 1);
return JSON.parse(jsonString);
} catch (e) {
return null;
}
}
}
export { export {
formatTime, formatTime,
formatLocation, formatLocation,
dateUtils, dateUtils,
otherUtils,
stringToBytes, stringToBytes,
ab2Str, ab2Str,
getCurrentTime, getCurrentTime,
......
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
</uni-col> </uni-col>
<uni-col :span="15"> <uni-col :span="15">
<view class="_content"> <view class="_content">
{{actualDepth || '-'}} {{valFilter(actualDepth)}}
</view> </view>
</uni-col> </uni-col>
</uni-row> </uni-row>
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
</uni-col> </uni-col>
<uni-col :span="15"> <uni-col :span="15">
<view class="_content"> <view class="_content">
<view>{{actualWaterLevel || '-'}}</view> <view>{{valFilter(actualWaterLevel)}}</view>
</view> </view>
</uni-col> </uni-col>
</uni-row> </uni-row>
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
</uni-col> </uni-col>
<uni-col :span="15"> <uni-col :span="15">
<view class="_content"> <view class="_content">
<view>{{actualHeat || '-'}}</view> <view>{{valFilter(actualHeat)}}</view>
</view> </view>
</uni-col> </uni-col>
</uni-row> </uni-row>
...@@ -207,6 +207,15 @@ ...@@ -207,6 +207,15 @@
...mapState(['actualDepth', 'actualWaterLevel', 'actualHeat', 'version']) ...mapState(['actualDepth', 'actualWaterLevel', 'actualHeat', 'version'])
}, },
methods: { methods: {
valFilter(val){ // 数值为0则显示0
if(val){
return val
}
if(val === 0 || val === '0'){
return '0'
}
return '-'
},
openPopup() { openPopup() {
// 通过组件定义的ref调用uni-popup方法 ,如果传入参数 ,type 属性将失效 ,仅支持 ['top','left','bottom','right','center'] // 通过组件定义的ref调用uni-popup方法 ,如果传入参数 ,type 属性将失效 ,仅支持 ['top','left','bottom','right','center']
this.$refs.popup.open('center'); this.$refs.popup.open('center');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment