Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yanshouyi-Minipro
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xinzhedeai
yanshouyi-Minipro
Commits
da787828
Commit
da787828
authored
Mar 24, 2025
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
测量值0显示、粘包问题数据格式吹了
parent
da6fbc73
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
51 additions
and
10 deletions
+51
-10
mixin.js
common/mixin.js
+14
-7
util.js
common/util.js
+25
-0
blueMeasure.vue
pages/home/blueMeasure.vue
+12
-3
No files found.
common/mixin.js
View file @
da787828
...
@@ -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
'
)
}
}
// 接收到监测值,回复主机
TEMP
OK
// 接收到监测值,回复主机
DATA
OK
if
(
wd
){
if
(
wd
){
blueToother
.
writeBLECharacteristicValue
(
'
TEMP
OK
'
)
blueToother
.
writeBLECharacteristicValue
(
'
DATA
OK
'
)
}
}
});
});
}
else
{
}
else
{
...
...
common/util.js
View file @
da787828
...
@@ -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
,
...
...
pages/home/blueMeasure.vue
View file @
da787828
...
@@ -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
'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment