react_hsbc_teller 2.0.60 → 2.0.62
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 +3 -3
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.61'
|
|
65
65
|
const IDtypeFront = '请客户在其设备后置摄像头下展示证件正面(如:身份证照片页面)'
|
|
66
66
|
const IDtypeBack = '请在后置摄像头下展示证件反面(如:身份证国徽页)'
|
|
67
67
|
const { Option } = Select;
|
|
@@ -749,7 +749,7 @@ class Video extends Component {
|
|
|
749
749
|
recordParam.width = 1280 * SCALE;
|
|
750
750
|
recordParam.height = 720 * SCALE;
|
|
751
751
|
recordParam.recordTotalStream = 0;
|
|
752
|
-
recordParam.startTimeout =
|
|
752
|
+
recordParam.startTimeout = 20;
|
|
753
753
|
recordParam.splitType = 0;
|
|
754
754
|
recordParam.endType = 1;
|
|
755
755
|
recordParam.crf = 26
|
|
@@ -792,7 +792,7 @@ class Video extends Component {
|
|
|
792
792
|
recordParam.width = 1280;
|
|
793
793
|
recordParam.height = 720;
|
|
794
794
|
recordParam.recordTotalStream = 0;
|
|
795
|
-
recordParam.startTimeout =
|
|
795
|
+
recordParam.startTimeout = 20;
|
|
796
796
|
recordParam.splitType = 0;
|
|
797
797
|
recordParam.endType = 1;
|
|
798
798
|
recordParam.crf = 26
|