react_hsbc_teller 2.0.68 → 2.0.69
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/README.md +2 -0
- package/lib/hsbc.js +1 -1
- package/package.json +1 -1
- package/packages/pages/video/video.jsx +4 -4
- package/packages/pages/video/video.less +3 -0
package/package.json
CHANGED
|
@@ -61,7 +61,7 @@ import MultiModule from '../multiModule/multiModule'//签字、抄录
|
|
|
61
61
|
import axios from 'axios';
|
|
62
62
|
import CryptoJS from "crypto-js";
|
|
63
63
|
|
|
64
|
-
const SDK_VERISON = '2.0.
|
|
64
|
+
const SDK_VERISON = '2.0.69'
|
|
65
65
|
const IDtypeFront = '请客户在其设备后置摄像头下展示证件正面(如:身份证照片页面)'
|
|
66
66
|
const IDtypeBack = '请在后置摄像头下展示证件反面(如:身份证国徽页)'
|
|
67
67
|
const { Option } = Select;
|
|
@@ -7626,7 +7626,7 @@ class Video extends Component {
|
|
|
7626
7626
|
this.state.cameraList.map((item, index) => {
|
|
7627
7627
|
return <div key={index} className="envClass">
|
|
7628
7628
|
{/* <input type="radio" name="camere" value={item.actionid} style={{ float: 'left' }} checked={this.state.cameraValue == item.actionid} readOnly disabled /><i></i> */}
|
|
7629
|
-
{item.actionname}{this.state.cameraValue == item.actionid ?
|
|
7629
|
+
{item.actionname}{this.state.cameraValue == item.actionid ? <span class="currentDevice">(当前设备)</span> : ''}
|
|
7630
7630
|
</div>
|
|
7631
7631
|
})
|
|
7632
7632
|
}
|
|
@@ -7639,7 +7639,7 @@ class Video extends Component {
|
|
|
7639
7639
|
{
|
|
7640
7640
|
this.state.microphoneList.map((item, index) => {
|
|
7641
7641
|
return <div key={index} className="envClass">
|
|
7642
|
-
{item.actionname}{this.state.microphoneValue == item.actionid ?
|
|
7642
|
+
{item.actionname}{this.state.microphoneValue == item.actionid ? <span class="currentDevice">(当前设备)</span> : ''}
|
|
7643
7643
|
</div>
|
|
7644
7644
|
})
|
|
7645
7645
|
}
|
|
@@ -7651,7 +7651,7 @@ class Video extends Component {
|
|
|
7651
7651
|
{
|
|
7652
7652
|
this.state.speakerList.map((item, index) => {
|
|
7653
7653
|
return <div key={index} className="envClass">
|
|
7654
|
-
{item.actionname}{
|
|
7654
|
+
{item.actionname}{<span class="currentDevice">(当前设备)</span>}
|
|
7655
7655
|
</div>
|
|
7656
7656
|
})
|
|
7657
7657
|
}
|