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
a1d318e8
Commit
a1d318e8
authored
Jan 03, 2025
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
蓝牙连接 heart
parent
b1d4ebea
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
211 additions
and
94 deletions
+211
-94
login.js
api/login.js
+7
-0
mixin.js
common/mixin.js
+66
-22
util.js
common/util.js
+1
-1
manifest.json
manifest.json
+3
-1
home.vue
pages/home/home.vue
+9
-7
login.vue
pages/user/login.vue
+111
-62
index.js
store/index.js
+14
-1
No files found.
api/login.js
View file @
a1d318e8
...
@@ -6,4 +6,11 @@ export function login(params) { // 登录获取token
...
@@ -6,4 +6,11 @@ export function login(params) { // 登录获取token
method
:
'
post
'
,
method
:
'
post
'
,
data
:
params
.
data
data
:
params
.
data
})
})
}
export
function
getPhoneNumber
(
params
)
{
// 登录获取token
return
request
({
url
:
'
/weixin/getPhoneNumber
'
,
method
:
'
get
'
,
data
:
params
.
data
})
}
}
\ No newline at end of file
common/mixin.js
View file @
a1d318e8
...
@@ -6,6 +6,7 @@ import {
...
@@ -6,6 +6,7 @@ import {
showCustomToast
,
showCustomToast
,
commonStateCodeDeal
,
commonStateCodeDeal
,
blueToother
,
blueToother
,
storager
}
from
'
./util.js
'
}
from
'
./util.js
'
const
blueToothMixin
=
{
const
blueToothMixin
=
{
...
@@ -132,9 +133,9 @@ const blueToothMixin = {
...
@@ -132,9 +133,9 @@ const blueToothMixin = {
this
.
connected
=
flag
this
.
connected
=
flag
},
},
setConnectState
(
flag
){
// flag:true 正常 false 不正常
setConnectState
(
flag
){
// flag:true 正常 false 不正常
if
(
flag
){
this
.
connectState
=
flag
this
.
connectState
=
flag
this
.
$store
.
commit
(
'
setLinked
'
,
flag
)
}
uni
.
setStorageSync
(
'
connected
'
,
flag
)
},
},
setNavBarTitle
(
content
)
{
setNavBarTitle
(
content
)
{
// this.navBarTitle = content + ' ' + this.deviceName
// this.navBarTitle = content + ' ' + this.deviceName
...
@@ -181,7 +182,6 @@ const blueToothMixin = {
...
@@ -181,7 +182,6 @@ const blueToothMixin = {
// }
// }
// });
// });
this
.
connected
=
false
this
.
setNavBarTitle
(
'
已断开
'
)
this
.
setNavBarTitle
(
'
已断开
'
)
this
.
setConnectState
(
false
)
this
.
setConnectState
(
false
)
},
},
...
@@ -193,18 +193,16 @@ const blueToothMixin = {
...
@@ -193,18 +193,16 @@ const blueToothMixin = {
// const result4close = await blueToother.closeBLEConnection(this.deviceId)
// const result4close = await blueToother.closeBLEConnection(this.deviceId)
const
result
=
await
blueToother
.
createBLEConnection
(
this
.
deviceId
)
const
result
=
await
blueToother
.
createBLEConnection
(
storager
.
get
(
'
deviceInfo
'
)
.
deviceId
)
console
.
log
(
'
result
'
,
result
)
console
.
log
(
'
result
'
,
result
)
if
(
result
)
{
if
(
result
)
{
commonStateCodeDeal
(
2
,
'
createBLEConnection=>创建连接成功
'
)
commonStateCodeDeal
(
2
,
'
createBLEConnection=>创建连接成功
'
)
this
.
setNavBarTitle
(
'
已创建连接
'
)
this
.
setNavBarTitle
(
'
已创建连接
'
)
this
.
getBLEDeviceServices
(
this
.
deviceId
);
this
.
getBLEDeviceServices
(
storager
.
get
(
'
deviceInfo
'
)
.
deviceId
);
uni
.
onBLEConnectionStateChange
((
res
)
=>
{
// 蓝牙连接意外断开等异常情况
uni
.
onBLEConnectionStateChange
((
res
)
=>
{
// 蓝牙连接意外断开等异常情况
if
(
!
res
.
connected
)
{
if
(
!
res
.
connected
)
{
this
.
setNavBarTitle
(
'
连接已断开
'
)
this
.
setNavBarTitle
(
'
连接已断开
'
)
this
.
setConnectState
(
false
)
this
.
setConnectState
(
false
)
this
.
connected
=
false
// this.stopLink()
// this.stopLink()
}
}
...
@@ -252,7 +250,7 @@ const blueToothMixin = {
...
@@ -252,7 +250,7 @@ const blueToothMixin = {
var
that
=
this
;
var
that
=
this
;
this
.
readyRec
=
false
;
this
.
readyRec
=
false
;
try
{
try
{
const
res
=
await
blueToother
.
getBLEDeviceServices
(
this
.
deviceId
)
const
res
=
await
blueToother
.
getBLEDeviceServices
(
storager
.
get
(
'
deviceInfo
'
)
.
deviceId
)
console
.
log
(
'
res
'
,
res
)
console
.
log
(
'
res
'
,
res
)
if
(
res
&&
res
.
services
.
length
)
{
if
(
res
&&
res
.
services
.
length
)
{
var
isService
=
false
;
var
isService
=
false
;
...
@@ -263,7 +261,7 @@ const blueToothMixin = {
...
@@ -263,7 +261,7 @@ const blueToothMixin = {
if
(
this
.
serviceu
==
res
.
services
[
i
].
uuid
)
{
if
(
this
.
serviceu
==
res
.
services
[
i
].
uuid
)
{
isService
=
true
;
isService
=
true
;
this
.
setNavBarTitle
(
'
服务已匹配
'
)
this
.
setNavBarTitle
(
'
服务已匹配
'
)
this
.
getBLEDeviceCharacteristics
(
this
.
deviceId
,
this
.
serviceu
);
this
.
getBLEDeviceCharacteristics
(
storager
.
get
(
'
deviceInfo
'
)
.
deviceId
,
this
.
serviceu
);
}
}
}
}
if
(
!
isService
)
{
if
(
!
isService
)
{
...
@@ -297,8 +295,8 @@ const blueToothMixin = {
...
@@ -297,8 +295,8 @@ const blueToothMixin = {
try
{
try
{
const
res
=
await
blueToother
.
notifyBLECharacteristicValueChange
(
deviceId
,
serviceId
,
const
res
=
await
blueToother
.
notifyBLECharacteristicValueChange
(
deviceId
,
serviceId
,
characteristicId
,
state
)
characteristicId
,
state
)
this
.
connected
=
true
this
.
setConnectState
(
true
)
uni
.
setStorageSync
(
'
connected
'
,
true
)
this
.
setNavBarTitle
(
'
【Notify】开启成功
'
)
this
.
setNavBarTitle
(
'
【Notify】开启成功
'
)
this
.
readyRec
=
true
;
this
.
readyRec
=
true
;
uni
.
hideLoading
()
uni
.
hideLoading
()
...
@@ -378,7 +376,7 @@ const blueToothMixin = {
...
@@ -378,7 +376,7 @@ const blueToothMixin = {
// this.showModalTips(this.rxdu + "\r正在开启通知...")
// this.showModalTips(this.rxdu + "\r正在开启通知...")
that
.
setNavBarTitle
(
'
正在开启通知
'
)
that
.
setNavBarTitle
(
'
正在开启通知
'
)
that
.
notifyBLECharacteristicValueChange
(
deviceId
,
serviceId
,
item
.
uuid
,
true
)
that
.
notifyBLECharacteristicValueChange
(
storager
.
get
(
'
deviceInfo
'
).
deviceId
,
serviceId
,
item
.
uuid
,
true
)
}
else
{
}
else
{
this
.
setConnectState
(
false
)
this
.
setConnectState
(
false
)
that
.
setNavBarTitle
(
'
notify特征值uuid不匹配
'
)
that
.
setNavBarTitle
(
'
notify特征值uuid不匹配
'
)
...
@@ -388,6 +386,7 @@ const blueToothMixin = {
...
@@ -388,6 +386,7 @@ const blueToothMixin = {
// 操作之前先监听,保证第一时间获取数据
// 操作之前先监听,保证第一时间获取数据
uni
.
onBLECharacteristicValueChange
((
characteristic
)
=>
{
uni
.
onBLECharacteristicValueChange
((
characteristic
)
=>
{
console
.
log
(
'
onBLECharacteristicValueChange值改变获取
'
,
characteristic
)
if
(
!
this
.
readyRec
)
{
if
(
!
this
.
readyRec
)
{
return
;
return
;
}
}
...
@@ -401,22 +400,67 @@ const blueToothMixin = {
...
@@ -401,22 +400,67 @@ const blueToothMixin = {
commonStateCodeDeal
(
2
,
'
特征值UUID值不匹配onBLECharacteristicValueChange
'
)
commonStateCodeDeal
(
2
,
'
特征值UUID值不匹配onBLECharacteristicValueChange
'
)
return
;
return
;
}
}
console
.
log
(
'
recStr*****
'
,
recStr
)
if
(
recStr
===
'
HEART
'
){
// 心跳监测
var
temp4heart
=
new
Uint8Array
(
stringToBytes
(
'
HEART
'
));
uni
.
writeBLECharacteristicValue
({
deviceId
:
storager
.
get
(
'
deviceInfo
'
).
deviceId
,
serviceId
:
'
0000FFE0-0000-1000-8000-00805F9B34FB
'
,
characteristicId
:
'
0000FFE1-0000-1000-8000-00805F9B34FB
'
,
value
:
temp4heart
.
buffer
,
success
:
(
res
)
=>
{
console
.
log
(
'
writeBLECharacteristicValue-successHEART:res=>
'
,
res
)
},
fail
:
(
res
)
=>
{
console
.
log
(
'
writeBLECharacteristicValue-failHEART:res=>
'
,
res
)
},
});
return
}
if
(
recStr
.
indexOf
(
'
HEART
'
)
>
-
1
){
// 处理掉测量深度对象值后面拼接的HEART字符串
recStr
=
recStr
.
split
(
'
HEART
'
)[
0
]
}
// 设置测试值:
// 设置测试值:
const
recBlueResData
=
JSON
.
parse
(
recStr
)
const
recBlueResData
=
JSON
.
parse
(
recStr
)
console
.
log
(
'
设备检测值
'
,
recBlueResData
)
console
.
log
(
'
设备检测值
'
,
recBlueResData
)
console
.
info
(
'
获取小球id和电量
'
,
recBlueResData
)
console
.
info
(
'
获取小球id和电量
'
,
recBlueResData
)
// console.log('设备检测值:', recBlueResData.angle)
// console.log('设备检测值:', recBlueResData.angle)
this
.
form
.
realTestInclination
=
recBlueResData
.
angle
if
(
recBlueResData
.
power1
){
this
.
form
.
realTestHoleDepth
=
recBlueResData
.
lenth
this
.
$store
.
commit
(
'
setPower
'
,
{
commonStateCodeDeal
(
2
,
'
监听到设备反馈信息
'
+
JSON
.
stringify
(
recBlueResData
))
power1
:
recBlueResData
.
power1
,
power2
:
recBlueResData
.
power2
,
// this.form.realTestTime = getCurrentTime()
qiuId
:
recBlueResData
.
id
})
commonStateCodeDeal
(
2
,
'
监听到设备反馈信息->电量
'
+
JSON
.
stringify
(
recBlueResData
))
return
}
if
(
recBlueResData
.
ks
){
this
.
$store
.
commit
(
'
setPower
'
,
{
actualDepth
:
recBlueResData
.
ks
,
actualWaterLevel
:
recBlueResData
.
ss
,
})
commonStateCodeDeal
(
2
,
'
监听到设备反馈信息->测量深度
'
+
JSON
.
stringify
(
recBlueResData
))
// 接收到监测深度值,回复主机DATAOK
var
temp4dataok
=
new
Uint8Array
(
stringToBytes
(
'
DATAOK
'
));
uni
.
writeBLECharacteristicValue
({
deviceId
:
storager
.
get
(
'
deviceInfo
'
).
deviceId
,
serviceId
:
'
0000FFE0-0000-1000-8000-00805F9B34FB
'
,
characteristicId
:
'
0000FFE1-0000-1000-8000-00805F9B34FB
'
,
value
:
temp4dataok
.
buffer
,
success
:
(
res
)
=>
{
console
.
log
(
'
writeBLECharacteristicValue-successHEART:res=>
'
,
res
)
},
fail
:
(
res
)
=>
{
console
.
log
(
'
writeBLECharacteristicValue-failHEART:res=>
'
,
res
)
},
});
return
}
});
});
}
else
{
}
else
{
this
.
setNavBarTitle
(
'
未发现特征值
'
)
this
.
setNavBarTitle
(
'
未发现特征值
'
)
this
.
setConnectState
(
false
)
this
.
setConnectState
(
false
)
...
...
common/util.js
View file @
a1d318e8
...
@@ -301,7 +301,7 @@ var storager = {
...
@@ -301,7 +301,7 @@ var storager = {
}
}
var
popuper
=
{
var
popuper
=
{
showLoading
:
function
(
obj
){
showLoading
:
function
(
obj
=
{}
){
uni
.
showLoading
({
uni
.
showLoading
({
title
:
obj
.
title
||
'
加载中...
'
,
title
:
obj
.
title
||
'
加载中...
'
,
mask
:
true
mask
:
true
...
...
manifest.json
View file @
a1d318e8
...
@@ -129,7 +129,9 @@
...
@@ -129,7 +129,9 @@
"versionCode"
:
100
"versionCode"
:
100
},
},
"mp-weixin"
:
{
"mp-weixin"
:
{
"appid"
:
"wx6238adc0d70b28d6"
,
//
"appid"
:
"wx6238adc0d70b28d6"
,
//
比萨列
"aGETDATAppid"
:
"wx41f6d06aca0687c3"
,
//
矿山智行
"setting"
:
{
"setting"
:
{
"urlCheck"
:
false
,
"urlCheck"
:
false
,
"es6"
:
true
"es6"
:
true
...
...
pages/home/home.vue
View file @
a1d318e8
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
<h3>
露天炮孔验收仪
</h3>
<h3>
露天炮孔验收仪
</h3>
<!--
<button
@
click=
"gosend"
>
获取电量
{{
actualWaterLevel
}}
</button>
-->
<!--
<button
@
click=
"gosend"
>
获取电量
{{
actualWaterLevel
}}
</button>
-->
</view>
</view>
<view
class=
"link-info-wrapper"
@
click=
"gosend('
POWER
')"
>
<view
class=
"link-info-wrapper"
@
click=
"gosend('
GETDATA
')"
>
<image
class=
"bg"
src=
"../../static/image/paokong/home-title-bg.png"
mode=
""
></image>
<image
class=
"bg"
src=
"../../static/image/paokong/home-title-bg.png"
mode=
""
></image>
<div
class=
"left"
>
<div
class=
"left"
>
<image
:src=
"`/static/image/paokong/$
{connected?'linkY':'linkN'}.png`" mode="">
</image>
<image
:src=
"`/static/image/paokong/$
{connected?'linkY':'linkN'}.png`" mode="">
</image>
...
@@ -19,15 +19,15 @@
...
@@ -19,15 +19,15 @@
<div
class=
"top"
>
<div
class=
"top"
>
<h2>
设备电量
</h2>
<h2>
设备电量
</h2>
<p>
<p>
小球
<image
src=
"/static/image/paokong/qiu-dl.png"
>
{{
'
22
'
}}
%
小球
<image
src=
"/static/image/paokong/qiu-dl.png"
>
{{
power1
}}
%
仪器
<image
src=
"/static/image/paokong/shebei-dl.png"
>
{{
'
24
'
}}
%
仪器
<image
src=
"/static/image/paokong/shebei-dl.png"
>
{{
power2
}}
%
</p>
</p>
</div>
</div>
<div
class=
"bottom"
>
<div
class=
"bottom"
>
<h2>
设备参数
</h2>
<h2>
设备参数
</h2>
<p>
设备名称:露天炮孔验收仪
</p>
<p>
设备名称:露天炮孔验收仪
</p>
<p>
设备型号:MYSM-OH-01
</p>
<p>
设备型号:MYSM-OH-01
</p>
<p>
设备ID:
MYSM-OH-01
</p>
<p>
设备ID:
{{
qiuId
}}
</p>
</div>
</div>
</div>
</div>
...
@@ -128,10 +128,11 @@
...
@@ -128,10 +128,11 @@
uni
.
hideTabBar
()
uni
.
hideTabBar
()
},
},
computed
:{
computed
:{
...
mapState
([
'
actualWaterLevel
'
])
...
mapState
([
'
actualWaterLevel
'
,
'
power1
'
,
'
power2
'
,
'
qiuId
'
,
'
connected
'
])
},
},
methods
:
{
methods
:
{
uploadExcel
(){
uploadExcel
(){
wx
.
chooseMessageFile
({
wx
.
chooseMessageFile
({
count
:
1
,
count
:
1
,
type
:
'
file
'
,
type
:
'
file
'
,
...
@@ -217,11 +218,12 @@
...
@@ -217,11 +218,12 @@
actualDepth
:
'
xxx
'
,
// 孔深
actualDepth
:
'
xxx
'
,
// 孔深
actualWaterLevel
:
'
666
'
// 水深
actualWaterLevel
:
'
666
'
// 水深
})
})
var
strbuf
=
new
Uint8Array
(
stringToBytes
(
'
POWER
'
));
var
strbuf
=
new
Uint8Array
(
stringToBytes
(
'
GETDATA
'
));
var
buffer1
=
strbuf
.
buffer
;
var
buffer1
=
strbuf
.
buffer
;
setTimeout
(()
=>
{
setTimeout
(()
=>
{
uni
.
writeBLECharacteristicValue
({
uni
.
writeBLECharacteristicValue
({
deviceId
:
'
C8:47:80:52:93:A2
'
,
// deviceId: 'C8:47:80:52:93:A2',
deviceId
:
storager
.
get
(
'
deviceInfo
'
).
deviceId
,
serviceId
:
'
0000FFE0-0000-1000-8000-00805F9B34FB
'
,
serviceId
:
'
0000FFE0-0000-1000-8000-00805F9B34FB
'
,
characteristicId
:
'
0000FFE1-0000-1000-8000-00805F9B34FB
'
,
characteristicId
:
'
0000FFE1-0000-1000-8000-00805F9B34FB
'
,
value
:
buffer1
,
value
:
buffer1
,
...
...
pages/user/login.vue
View file @
a1d318e8
...
@@ -8,6 +8,10 @@
...
@@ -8,6 +8,10 @@
<view
class=
'content'
>
<view
class=
'content'
>
<view
class=
"title"
>
手机号
</view>
<view
class=
"title"
>
手机号
</view>
<input
class=
"uni-input"
focus
placeholder=
"请输入手机号"
v-model=
"phone"
/>
<input
class=
"uni-input"
focus
placeholder=
"请输入手机号"
v-model=
"phone"
/>
<button
class=
"tel-btn"
open-type=
"getPhoneNumber"
@
getphonenumber=
"getPhoneNumber"
>
<uni-icons
type=
"phone"
size=
"18"
></uni-icons>
</button>
</view>
</view>
<button
class=
'loginBtn'
type=
'primary'
@
click=
"wxLogin"
>
<button
class=
'loginBtn'
type=
'primary'
@
click=
"wxLogin"
>
...
@@ -17,10 +21,18 @@
...
@@ -17,10 +21,18 @@
</view>
</view>
</
template
>
</
template
>
<
script
>
<
script
>
import
{
showCustomToast
,
popuper
,
storager
,
pager
}
from
'
../../common/util.js
'
import
{
import
{
login
}
from
'
../../api/login.js
'
showCustomToast
,
popuper
,
storager
,
pager
}
from
'
../../common/util.js
'
import
{
login
,
getPhoneNumber
}
from
'
../../api/login.js
'
export
default
{
export
default
{
onLoad
()
{
onLoad
()
{
/**
/**
...
@@ -50,114 +62,152 @@
...
@@ -50,114 +62,152 @@
}
}
},
},
methods
:
{
methods
:
{
async
wxLogin
(){
async
getPhoneNumber
(
e
)
{
popuper
.
showLoading
({
title
:
'
登录中...
'
})
popuper
.
showLoading
()
const
loginRes
=
await
this
.
getWxCode
()
console
.
log
(
e
)
if
(
!
loginRes
.
code
){
console
.
log
(
JSON
.
stringify
(
e
))
showCustomToast
({
const
code
=
e
.
detail
.
code
// 动态令牌
title
:
'
code未获取
'
})
let
res
=
await
getPhoneNumber
({
return
data
:
{
}
code
const
userInfo
=
await
this
.
getUserInfo
()
}
if
(
!
userInfo
.
iv
){
})
showCustomToast
({
console
.
log
(
'
res
'
,
res
)
title
:
'
iv未获取
'
if
(
res
){
})
this
.
phone
=
res
.
phoneNumber
return
}
}
popuper
.
hideLoading
()
await
this
.
getToken
(
loginRes
.
code
,
userInfo
)
},
async
wxLogin
()
{
popuper
.
showLoading
({
title
:
'
登录中...
'
})
const
loginRes
=
await
this
.
getWxCode
()
if
(
!
loginRes
.
code
)
{
showCustomToast
({
title
:
'
code未获取
'
})
return
}
const
userInfo
=
await
this
.
getUserInfo
()
if
(
!
userInfo
.
iv
)
{
showCustomToast
({
title
:
'
iv未获取
'
})
return
}
await
this
.
getToken
(
loginRes
.
code
,
userInfo
)
},
},
getWxCode
(){
getWxCode
()
{
return
new
Promise
((
resolve
,
reject
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
uni
.
login
({
uni
.
login
({
provider
:
'
weixin
'
,
provider
:
'
weixin
'
,
success
:
(
loginRes
)
=>
{
success
:
(
loginRes
)
=>
{
console
.
log
(
'
loginRes:
'
+
JSON
.
stringify
(
loginRes
));
console
.
log
(
'
loginRes:
'
+
JSON
.
stringify
(
loginRes
));
resolve
(
loginRes
);
resolve
(
loginRes
);
},
},
fail
:
(
err
)
=>
reject
(
err
)
// 添加失败处理
fail
:
(
err
)
=>
reject
(
err
)
// 添加失败处理
});
});
});
});
},
},
getUserInfo
(){
getUserInfo
()
{
return
new
Promise
((
resolve
,
reject
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
uni
.
getUserInfo
({
uni
.
getUserInfo
({
provider
:
'
weixin
'
,
provider
:
'
weixin
'
,
success
:
(
infoRes
)
=>
{
success
:
(
infoRes
)
=>
{
console
.
log
(
'
infoRes:
'
+
JSON
.
stringify
(
infoRes
));
console
.
log
(
'
infoRes:
'
+
JSON
.
stringify
(
infoRes
));
resolve
(
infoRes
);
resolve
(
infoRes
);
},
},
fail
:
(
err
)
=>
reject
(
err
)
// 添加失败处理
fail
:
(
err
)
=>
reject
(
err
)
// 添加失败处理
});
});
});
});
},
},
async
getToken
(
code
,
userInfo
){
async
getToken
(
code
,
userInfo
)
{
let
res
=
await
login
({
let
res
=
await
login
({
data
:
{
data
:
{
"
code
"
:
code
,
"
code
"
:
code
,
"
encryptedIv
"
:
userInfo
.
iv
,
"
encryptedIv
"
:
userInfo
.
iv
,
"
encryptedData
"
:
userInfo
.
encryptedData
,
"
encryptedData
"
:
userInfo
.
encryptedData
,
phone
:
this
.
phone
phone
:
this
.
phone
},
},
})
})
console
.
log
(
'
res
'
,
res
)
console
.
log
(
'
res
'
,
res
)
popuper
.
hideLoading
()
popuper
.
hideLoading
()
if
(
res
)
{
if
(
res
)
{
storager
.
set
(
'
token
'
,
res
.
token
)
storager
.
set
(
'
token
'
,
res
.
token
)
console
.
log
(
'
获取token
'
,
res
.
token
)
console
.
log
(
'
获取token
'
,
res
.
token
)
pager
.
relaunchTo
(
'
/pages/home/home
'
)
pager
.
relaunchTo
(
'
/pages/home/home
'
)
}
}
}
}
}
}
}
}
</
script
>
</
script
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
.tel-btn
{
background
:
#fff
;
.container
{
border
:
none
;
position
:
absolute
;
right
:
50rpx
;
top
:
-25rpx
;
z-index
:
1
;
&
:
:
after
{
border
:
none
;
}
}
.container
{
background-color
:
#fff
;
background-color
:
#fff
;
height
:
100vh
;
height
:
100vh
;
overflow
:
hidden
;
overflow
:
hidden
;
}
}
.header
{
.header
{
margin-top
:
340rpx
;
margin-top
:
340rpx
;
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
justify-content
:
center
;
justify-content
:
center
;
align-items
:
center
;
align-items
:
center
;
gap
:
33rpx
;
gap
:
33rpx
;
image
{
image
{
width
:
132rpx
;
width
:
132rpx
;
height
:
132rpx
;
height
:
132rpx
;
}
}
.title
{
.title
{
font-family
:
Source
Han
Sans
SC
;
font-family
:
Source
Han
Sans
SC
;
font-weight
:
bold
;
font-weight
:
bold
;
font-size
:
38rpx
;
font-size
:
38rpx
;
color
:
#000000
;
color
:
#000000
;
}
}
}
}
.content
{
.content
{
position
:
relative
;
display
:
flex
;
display
:
flex
;
justify-content
:
center
;
justify-content
:
center
;
gap
:
50rpx
;
gap
:
50rpx
;
margin-top
:
128rpx
;
margin-top
:
128rpx
;
.title
{
.title
{
font-weight
:
bold
;
font-weight
:
bold
;
font-size
:
34rpx
;
font-size
:
34rpx
;
color
:
#000000
;
color
:
#000000
;
}
}
input
{
input
{
font-size
:
34rpx
;
font-size
:
34rpx
;
}
}
}
}
.loginBtn
{
.loginBtn
{
width
:
630rpx
;
width
:
630rpx
;
height
:
88rpx
;
height
:
88rpx
;
line-height
:
88rpx
;
line-height
:
88rpx
;
...
@@ -166,5 +216,4 @@
...
@@ -166,5 +216,4 @@
margin-top
:
172rpx
;
margin-top
:
172rpx
;
font-size
:
34rpx
;
font-size
:
34rpx
;
}
}
</
style
>
</
style
>
\ No newline at end of file
store/index.js
View file @
a1d318e8
...
@@ -24,13 +24,26 @@ const store = createStore({
...
@@ -24,13 +24,26 @@ const store = createStore({
// menu: [],
// menu: [],
// univerifyErrorMsg: ''
// univerifyErrorMsg: ''
actualDepth
:
'
2222
'
,
// 孔深
actualDepth
:
'
2222
'
,
// 孔深
actualWaterLevel
:
'
111
'
// 水深
actualWaterLevel
:
'
111
'
,
// 水深
power1
:
0
,
power2
:
0
,
qiuId
:
''
,
connected
:
false
,
},
},
mutations
:
{
mutations
:
{
setMeasureVal
(
state
,
testRes
){
setMeasureVal
(
state
,
testRes
){
state
.
actualDepth
=
testRes
.
actualDepth
state
.
actualDepth
=
testRes
.
actualDepth
state
.
actualWaterLevel
=
testRes
.
actualWaterLevel
state
.
actualWaterLevel
=
testRes
.
actualWaterLevel
},
setPower
(
state
,
testRes
){
state
.
power1
=
testRes
.
power1
state
.
power2
=
testRes
.
power2
state
.
qiuId
=
testRes
.
qiuId
},
setLinked
(
state
,
flag
){
state
.
connected
=
flag
}
}
// login(state, provider) {
// login(state, provider) {
// state.hasLogin = true;
// state.hasLogin = true;
// state.loginProvider = provider;
// state.loginProvider = provider;
...
...
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