react_hsbc_teller 2.0.24 → 2.0.25
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/hsbc.js +1 -1
- package/package.json +1 -1
- package/packages/api/api.js +91 -0
- package/packages/assets/mp3/ipad_leave_error.mp3 +0 -0
- package/packages/assets/mp3/ipad_low_power.mp3 +0 -0
- package/packages/demo/demo.js +2 -0
- package/packages/pages/foot/foot.jsx +2 -2
- package/packages/pages/multiModule/components/copy/agree.jsx +115 -0
- package/packages/pages/multiModule/components/copy/agree.less +105 -0
- package/packages/pages/multiModule/components/copy/copyTwo.jsx +663 -0
- package/packages/pages/multiModule/components/copy/copyTwo.less +180 -0
- package/packages/pages/multiModule/components/copy/copy_en.jsx +365 -0
- package/packages/pages/multiModule/components/copy/copy_en.less +145 -0
- package/packages/pages/multiModule/components/copy/copylist.jsx +291 -0
- package/packages/pages/multiModule/components/copy/copylist.less +83 -0
- package/packages/pages/multiModule/components/copy/risk.jsx +294 -0
- package/packages/pages/multiModule/components/copy/risk.less +123 -0
- package/packages/pages/multiModule/components/sign/signMy.jsx +306 -0
- package/packages/pages/multiModule/components/sign/signMy.less +128 -0
- package/packages/pages/multiModule/components/subscribe/subscribe.jsx +113 -0
- package/packages/pages/multiModule/components/subscribe/subscribe.less +82 -0
- package/packages/pages/multiModule/multiModule.jsx +26 -0
- package/packages/pages/multiModule/multiModule.less +20 -0
- package/packages/pages/video/video.jsx +388 -148
- package/packages/utils/asrController.js +242 -0
- package/packages/utils/recorder.js +289 -0
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
.subscribe{
|
|
2
|
+
min-height: 100%;
|
|
3
|
+
background: #fff;
|
|
4
|
+
.thehead{
|
|
5
|
+
display: flex;
|
|
6
|
+
justify-content: space-between;
|
|
7
|
+
padding: 14px 24px;
|
|
8
|
+
.title{
|
|
9
|
+
display: flex;
|
|
10
|
+
.title-color{
|
|
11
|
+
width: 2px;
|
|
12
|
+
height: 1.5rem;
|
|
13
|
+
background: #00847F;
|
|
14
|
+
margin-top: 3px;
|
|
15
|
+
}
|
|
16
|
+
.title-text{
|
|
17
|
+
font-size: 1.5rem;
|
|
18
|
+
color: #323232;
|
|
19
|
+
margin-left: 8px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
}
|
|
23
|
+
.qianshu{
|
|
24
|
+
width: 96px;
|
|
25
|
+
height: 32px;
|
|
26
|
+
background: #F9F2F3;
|
|
27
|
+
border-radius: 2px;
|
|
28
|
+
border: 1px solid #E5B2B5;
|
|
29
|
+
font-size: 14px;
|
|
30
|
+
color: #DB0011;
|
|
31
|
+
line-height: 32px;
|
|
32
|
+
text-align: center;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
.contents{
|
|
36
|
+
display: flex;
|
|
37
|
+
flex-direction: column;
|
|
38
|
+
flex-wrap: wrap;
|
|
39
|
+
padding: 10px 24px;
|
|
40
|
+
.item-panel{
|
|
41
|
+
width: 100%;
|
|
42
|
+
min-height: 205px;
|
|
43
|
+
background: #FFFFFF;
|
|
44
|
+
border-radius: 4px;
|
|
45
|
+
border: 1px solid #E8E8E8;
|
|
46
|
+
overflow: hidden;
|
|
47
|
+
margin-top: 10px;
|
|
48
|
+
.item-header{
|
|
49
|
+
width: 100%;
|
|
50
|
+
height: 48px;
|
|
51
|
+
background: #FAFBFC;
|
|
52
|
+
border-radius: 4px 4px 0px 0px;
|
|
53
|
+
line-height: 48px;
|
|
54
|
+
font-size: 16px;
|
|
55
|
+
padding-left: 20px;
|
|
56
|
+
}
|
|
57
|
+
.item-info{
|
|
58
|
+
padding: 15px 22px;
|
|
59
|
+
.item-sub-title{
|
|
60
|
+
font-size: 12px;
|
|
61
|
+
font-weight: 400;
|
|
62
|
+
color: #969696;
|
|
63
|
+
&:not(:first-child){
|
|
64
|
+
margin-top: 20px;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
.content-text{
|
|
68
|
+
font-size: 16px;
|
|
69
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
70
|
+
font-weight: 400;
|
|
71
|
+
color: #666666;
|
|
72
|
+
line-height: 30px;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React, { Component } from 'react';
|
|
2
|
+
import './multiModule.less'
|
|
3
|
+
import Copy from "./components/copy/copylist" //抄录
|
|
4
|
+
import Subscribe from "./components/subscribe/subscribe" //签署
|
|
5
|
+
class multiModule extends Component {
|
|
6
|
+
state = {
|
|
7
|
+
};
|
|
8
|
+
handleReceiveMsg = (msg) => {
|
|
9
|
+
this.props.handleReceiveMsg(JSON.stringify(msg))
|
|
10
|
+
}
|
|
11
|
+
finish = () => {
|
|
12
|
+
this.props.finish()
|
|
13
|
+
}
|
|
14
|
+
render() {
|
|
15
|
+
return (
|
|
16
|
+
<div id='multiModule' className="multiModule">
|
|
17
|
+
{/* <Subscribe /> */}
|
|
18
|
+
{this.props.moduleName=='copy'?<Copy data={this.props.data} handleReceiveMsg={this.handleReceiveMsg} finish={this.finish}/>:null}
|
|
19
|
+
{this.props.moduleName=='subscribe'?<Subscribe data={this.props.data} handleReceiveMsg={this.handleReceiveMsg} finish={this.finish}/>:null}
|
|
20
|
+
</div>
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export default multiModule;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
.multiModule{
|
|
2
|
+
height: 100%;
|
|
3
|
+
overflow-y: overlay;
|
|
4
|
+
text-align: left;
|
|
5
|
+
// border: 1px solid rebeccapurple;
|
|
6
|
+
// .ant-modal{
|
|
7
|
+
// top: 50%;
|
|
8
|
+
// transform: translateY(-50%);
|
|
9
|
+
// margin: auto;
|
|
10
|
+
// }
|
|
11
|
+
.ant-modal-wrap{
|
|
12
|
+
position: absolute;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.multiModule .endModal{
|
|
17
|
+
font-size: 16px;
|
|
18
|
+
padding: 30px 30px 0px 30px;
|
|
19
|
+
color: #333333;
|
|
20
|
+
}
|