Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
bh_face_counter
Overview
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
黄天晨
bh_face_counter
Commits
8cb8c40a
Commit
8cb8c40a
authored
Dec 01, 2021
by
zeven
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化刷卡弹窗效果
parent
57bcc67b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
44 additions
and
28 deletions
+44
-28
android
android
+1
-1
ModalView.js
src/components/ModalView.js
+30
-0
card.js
src/models/card.js
+0
-9
goods.js
src/models/goods.js
+5
-0
index.js
src/models/index.js
+0
-2
CounterMixins.js
src/pages/CounterMixins.js
+8
-4
VerticalPage.js
src/pages/VerticalPage.js
+0
-0
yarn.lock
yarn.lock
+0
-12
No files found.
android
@
6fc46902
Subproject commit
fa20326dbf101fa51561d92998b181f8d46e5ede
Subproject commit
6fc469027cd79cc658acbe06d1a70214859ea480
src/components/ModalView.js
0 → 100644
View file @
8cb8c40a
import
React
,
{
Component
}
from
'react'
;
import
{
StyleSheet
,
View
}
from
'react-native'
;
class
ModalView
extends
Component
{
render
()
{
const
{
visible
,
children
}
=
this
.
props
;
return
visible
?
(
<
View
style
=
{
styles
.
modal
}
visible
=
{
visible
}
>
{
children
}
<
/View
>
)
:
null
;
}
}
const
styles
=
StyleSheet
.
create
({
modal
:
{
position
:
'absolute'
,
top
:
0
,
right
:
0
,
bottom
:
0
,
left
:
0
,
justifyContent
:
'center'
,
alignItems
:
'center'
,
backgroundColor
:
'rgba(0, 0, 0, 0.3)'
,
// backgroundColor: 'transparent',
zIndex
:
999
,
},
});
export
default
ModalView
;
src/models/card.js
deleted
100644 → 0
View file @
57bcc67b
export
default
{
namespace
:
'card'
,
state
:
false
,
reducers
:
{
change
(
bool
)
{
return
!
bool
;
},
},
};
src/models/goods.js
View file @
8cb8c40a
...
...
@@ -8,6 +8,7 @@ export default {
total
:
0
,
preTotal
:
0
,
status
:
-
1
,
cardVisible
:
false
,
},
reducers
:
{
setOrder
(
state
,
{
data
})
{
...
...
@@ -21,6 +22,10 @@ export default {
state
.
bags
=
data
;
return
{...
state
};
},
cardVisible
(
state
,
{
visible
})
{
state
.
cardVisible
=
visible
;
return
{...
state
};
},
},
effects
:
{
*
getBags
(
action
,
{
put
,
call
})
{
...
...
src/models/index.js
View file @
8cb8c40a
...
...
@@ -11,7 +11,6 @@ import store from './store';
import
agora
from
'./agora'
;
import
lucky
from
'./lucky'
;
import
searchGoods
from
'./searchGoods'
;
import
card
from
'./card'
;
const
{
width
:
_width
,
height
:
_height
}
=
Dimensions
.
get
(
'window'
);
...
...
@@ -80,5 +79,4 @@ export default [
agora
,
lucky
,
searchGoods
,
card
,
];
src/pages/CounterMixins.js
View file @
8cb8c40a
...
...
@@ -138,17 +138,22 @@ const CounterMixins = ComposeComponent => {
cardId
,
})
.
then
(
async
({
data
})
=>
{
this
.
props
.
dispatch
({
type
:
'goods/cardVisible'
,
visible
:
false
,
});
if
(
data
.
code
===
1
)
{
this
.
orderId
=
data
.
data
.
orderId
;
await
this
.
successPay
(
true
);
}
else
{
Toast
.
hide
();
Speech
.
speak
(
data
.
msg
);
this
.
setState
({
voiceModal
:
true
,
voiceTitle
:
data
.
msg
});
}
});
setTimeout
(()
=>
{
this
.
setState
({
voiceModal
:
false
});
},
2
000
);
},
3
000
);
};
componentWillUnmount
=
()
=>
{
...
...
@@ -581,7 +586,7 @@ const CounterMixins = ComposeComponent => {
};
submitBarcode
=
async
barcode
=>
{
if
(
this
.
props
.
card
)
{
if
(
this
.
props
.
goods
.
cardVisible
)
{
return
await
this
.
handleCard
(
barcode
||
this
.
barcode
);
}
this
.
errGood
=
null
;
...
...
@@ -1023,11 +1028,10 @@ const CounterMixins = ComposeComponent => {
};
}
return
connect
(({
goods
,
admin
,
store
,
card
})
=>
({
return
connect
(({
goods
,
admin
,
store
})
=>
({
goods
,
admin
,
store
,
card
,
}))(
Mixins
);
};
...
...
src/pages/VerticalPage.js
View file @
8cb8c40a
This diff is collapsed.
Click to expand it.
yarn.lock
View file @
8cb8c40a
...
...
@@ -5891,18 +5891,6 @@ react-native-qrcode-svg@6.0.6:
prop-types "^15.5.10"
qrcode "^1.3.2"
react-native-root-modal@^5.0.1:
version "5.0.1"
resolved "https://registry.npm.taobao.org/react-native-root-modal/download/react-native-root-modal-5.0.1.tgz#8b49f523f70732f1697961edc42174f81259e6c1"
integrity sha1-i0n1I/cHMvFpeWHtxCF0+BJZ5sE=
dependencies:
react-native-root-siblings "^4.0.0"
react-native-root-siblings@^4.0.0:
version "4.1.1"
resolved "https://registry.nlark.com/react-native-root-siblings/download/react-native-root-siblings-4.1.1.tgz#b7742db7634a87f507eb99a5fd699c4f10c46ab0"
integrity sha1-t3Qtt2NKh/UH65ml/WmcTxDEarA=
react-native-svg@12.1.0:
version "12.1.0"
resolved "https://registry.npm.taobao.org/react-native-svg/download/react-native-svg-12.1.0.tgz#acfe48c35cd5fca3d5fd767abae0560c36cfc03d"
...
...
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