react_hsbc_teller 2.0.57 → 2.0.59

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react_hsbc_teller",
3
- "version": "2.0.57",
3
+ "version": "2.0.59",
4
4
  "description": "React",
5
5
  "private": false,
6
6
  "main": "lib/hsbc.js",
@@ -24,7 +24,8 @@ class Demo extends Component {
24
24
  // baseURL:'https://counter-web.leimondata.cn:18082/api/leimon-counter-api',
25
25
  // resourcePath: 'https://counter-web.leimondata.cn:7199',
26
26
  // resourcePath:'http://121.196.19.70:8027/',
27
- roomServerUrl: 'wss://app.uat.dsp.hsbcfts.com.cn/mpaas/mrtc/ws',
27
+ roomServerUrl: 'wss://uat.mpaas.investments.hsbc.com.hk:31000/mpaas/mrtc/ws',
28
+ // roomServerUrl: 'wss://app.uat.dsp.hsbcfts.com.cn/mpaas/mrtc/ws',
28
29
  baseURL:'https://zuul.uat.dsp.hsbcfts.com.cn/wealth/zuul/api/leimon-counter-api',
29
30
  resourcePath:'https://zuul.uat.dsp.hsbcfts.com.cn/wealth/js/',
30
31
  prohibitPrompt: '无客户',
@@ -10,17 +10,11 @@ export default class step extends Component {
10
10
  <div style={{...this.props.style}}>
11
11
  <div style={{marginBottom: '10px'}}>客户证件识别</div>
12
12
  <Steps current={current} direction={this.props.direction} size="small" style={{width:'150px', height: '200px'}}>
13
- {/* step1 */}
14
- <Step status={current==0? '':'wait'} title="请选择客户" />
15
-
16
- {/* step2 */}
17
- <Step status={current==1? '':'wait'} title="确认客户证件类型" />
18
-
19
- {/* step3 */}
20
- <Step status={current==2? '':'wait'} title="证件信息核查" />
21
-
22
- {/* step4 */}
23
- { current==3 && <Step title="人脸识别" />}
13
+ <Step status={current===0? '':'wait'} title="请选择客户类型" />
14
+ <Step status={current===1? '':'wait'} title="请选择客户" />
15
+ <Step status={current===2? '':'wait'} title="确认客户证件类型" />
16
+ <Step status={current===3? '':'wait'} title="证件信息核查" />
17
+ { current===4 && <Step title="人脸识别" />}
24
18
  </Steps>
25
19
  </div>
26
20
  )