Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wx-school-app-public
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
姜雷
wx-school-app-public
Commits
69129737
Commit
69129737
authored
Jul 25, 2019
by
姜雷
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into test
parents
2fb9b18a
da65c15b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
4 deletions
+15
-4
device.ts
src/api/device.ts
+3
-0
pay.tsx
src/pages/pay/pay.tsx
+10
-4
device.ts
src/store/rootReducers/device.ts
+1
-0
Device.ts
src/types/Device/Device.ts
+1
-0
No files found.
src/api/device.ts
View file @
69129737
...
...
@@ -30,6 +30,9 @@ type DeviceInfoResponse = {
positionId
:
string
;
// 位置id
rates
:
RateInfoResponse
[];
//是否纯蓝牙设备 1:是,0:否
isOnlyBluetooth
:
number
;
};
type
RateInfoResponse
=
{
mark
:
string
;
...
...
src/pages/pay/pay.tsx
View file @
69129737
...
...
@@ -243,6 +243,10 @@ class Pay extends Component {
);
})
.
catch
(
err
=>
{
Taro
.
showModal
({
title
:
'温馨提示'
,
content
:
'为保障正常使用,请打开蓝牙设备!'
,
});
console
.
error
(
err
);
Taro
.
onBluetoothAdapterStateChange
(
res
=>
{
console
.
log
(
'adapterState changed, now is'
,
res
);
...
...
@@ -717,10 +721,12 @@ class Pay extends Component {
}
=
this
.
props
;
const
{
payId
,
deviceDone
,
sockedDone
}
=
this
.
state
;
if
(
payId
)
{
if
(
this
.
checkIsShower
())
{
console
.
log
(
deviceDone
,
sockedDone
);
if
(
!
deviceDone
||
!
sockedDone
)
{
return
this
.
showerPayHandle
();
if
(
device
.
isOnlyBluetooth
&&
device
.
isOnlyBluetooth
===
1
)
{
if
(
this
.
checkIsShower
())
{
console
.
log
(
deviceDone
,
sockedDone
);
if
(
!
deviceDone
||
!
sockedDone
)
{
return
this
.
showerPayHandle
();
}
}
}
getPayOrder
({
...
...
src/store/rootReducers/device.ts
View file @
69129737
...
...
@@ -17,6 +17,7 @@ export const INITIAL_STATE = {
rates
:
[],
serviceId
:
0
,
serviceName
:
''
,
isOnlyBluetooth
:
0
,
};
export
const
updateDeviceData
=
(
entity
:
DeviceState
):
Action
=>
({
...
...
src/types/Device/Device.ts
View file @
69129737
...
...
@@ -20,4 +20,5 @@ export type Device = {
rates
:
Rate
[];
serviceId
:
number
;
serviceName
:
string
;
isOnlyBluetooth
:
number
;
};
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