react_hsbc_teller 0.4.4 → 0.4.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/af86cbfc6e2e5f93fbf4d1c5211275d6.png +0 -0
- package/lib/hsbc.js +1 -1
- package/package.json +1 -1
- package/packages/assets/img/Face_recognition.png +0 -0
- package/packages/assets/img/Projection_screen.png +0 -0
- package/packages/assets/img/huazhonghua.png +0 -0
- package/packages/assets/img/icon_Mute.png +0 -0
- package/packages/assets/img/icon_MuteOne.png +0 -0
- package/packages/assets/img/icon_invitation.png +0 -0
- package/packages/assets/img/icon_ocr.png +0 -0
- package/packages/assets/img/placeholder_bg.png +0 -0
- package/packages/pages/foot/foot.jsx +10 -4
- package/packages/pages/foot/foot.less +20 -11
- package/packages/pages/header/header.less +1 -1
- package/packages/pages/video/video.jsx +807 -689
- package/packages/pages/video/video.less +130 -46
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -47,6 +47,9 @@ export default class foot extends Component {
|
|
|
47
47
|
console.log(visible)
|
|
48
48
|
this.props.ocrHandleVisibleChange(visible)
|
|
49
49
|
};
|
|
50
|
+
inspection = ()=>{
|
|
51
|
+
this.props.inspection()
|
|
52
|
+
}
|
|
50
53
|
render() {
|
|
51
54
|
const {clickedOcr,clickedFacial,isTranscribing,img,cameraImg,screenName,suspendName,customerList,menus} = this.props
|
|
52
55
|
const content = (
|
|
@@ -130,18 +133,21 @@ export default class foot extends Component {
|
|
|
130
133
|
return (
|
|
131
134
|
<div className="foot">
|
|
132
135
|
<div className="total">
|
|
133
|
-
<div className=
|
|
136
|
+
<div className='footHover' onClick={this.voice.bind(this)}>
|
|
137
|
+
<div className="one">
|
|
134
138
|
<img className="imgClass" src={img} alt="" />
|
|
135
139
|
<div className="text">
|
|
136
140
|
静音
|
|
137
141
|
</div>
|
|
142
|
+
</div>
|
|
143
|
+
|
|
138
144
|
</div>
|
|
139
|
-
|
|
145
|
+
<div className="one" onClick={this.inspection.bind(this)}>
|
|
140
146
|
<img className="imgClass" src={cameraImg} alt="" />
|
|
141
147
|
<div className="text">
|
|
142
|
-
|
|
148
|
+
设备检测
|
|
143
149
|
</div>
|
|
144
|
-
</div>
|
|
150
|
+
</div>
|
|
145
151
|
</div>
|
|
146
152
|
{defaultList}
|
|
147
153
|
|
|
@@ -13,21 +13,28 @@ width: 100%;
|
|
|
13
13
|
|
|
14
14
|
align-items: center;
|
|
15
15
|
.one{
|
|
16
|
+
margin-top: 5px;
|
|
16
17
|
display: flex;
|
|
17
|
-
height: 32px;
|
|
18
|
+
line-height: 32px;
|
|
18
19
|
flex-direction: column;
|
|
19
20
|
align-items: center;
|
|
20
21
|
flex-wrap: nowrap;
|
|
21
22
|
}
|
|
23
|
+
// .footHover :hover{
|
|
24
|
+
// background: #F3F3F3;
|
|
25
|
+
// border-radius: 8px;
|
|
26
|
+
// width: 84px;
|
|
27
|
+
// height: 32px;
|
|
28
|
+
// }
|
|
22
29
|
.text{
|
|
23
|
-
margin-top:
|
|
30
|
+
margin-top: 10px;
|
|
24
31
|
text-align: center;
|
|
25
32
|
width: 80px;
|
|
26
33
|
height: 11px;
|
|
27
|
-
font-size:
|
|
34
|
+
font-size: 14px;
|
|
28
35
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
29
36
|
font-weight: 400;
|
|
30
|
-
color: #
|
|
37
|
+
color: #333333;
|
|
31
38
|
line-height: 11px;
|
|
32
39
|
}
|
|
33
40
|
}
|
|
@@ -39,19 +46,21 @@ line-height: 11px;
|
|
|
39
46
|
justify-content: flex-end;
|
|
40
47
|
}
|
|
41
48
|
.buttonClass{
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
49
|
+
font-size: 16px;
|
|
50
|
+
color: #ffffff;
|
|
51
|
+
width: 70px;
|
|
52
|
+
height: 32px;
|
|
53
|
+
background: #B70000;
|
|
54
|
+
border-radius: 6px;
|
|
55
|
+
border: 1px #B70000 solid;
|
|
47
56
|
}
|
|
48
57
|
.spanClass{
|
|
49
58
|
font-size: 16px;
|
|
50
59
|
color: #FFFFFF;
|
|
51
60
|
}
|
|
52
61
|
.imgClass{
|
|
53
|
-
width:
|
|
54
|
-
height:
|
|
62
|
+
width: 25px;
|
|
63
|
+
height: 25px;
|
|
55
64
|
}
|
|
56
65
|
.listLi{
|
|
57
66
|
margin-top: 4px;
|