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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react_hsbc_teller",
3
- "version": "2.0.68",
3
+ "version": "2.0.69",
4
4
  "description": "React",
5
5
  "private": false,
6
6
  "main": "lib/hsbc.js",
@@ -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.68'
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
  }
@@ -716,3 +716,6 @@ display: inline-flex;
716
716
  body {
717
717
  font-size: 100%;
718
718
  }
719
+ .currentDevice{
720
+ color: #DB0011;
721
+ }