react_hsbc_teller 2.0.31 → 2.0.32
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/pages/video/video.jsx +5 -5
package/package.json
CHANGED
|
@@ -58,7 +58,7 @@ import MultiModule from '../multiModule/multiModule'//签字、抄录
|
|
|
58
58
|
import axios from 'axios';
|
|
59
59
|
import CryptoJS from "crypto-js";
|
|
60
60
|
|
|
61
|
-
const SDK_VERISON = '2.0.
|
|
61
|
+
const SDK_VERISON = '2.0.32'
|
|
62
62
|
const IDtypeFront = '请客户在其设备后置摄像头下展示证件正面(如:身份证照片页面)'
|
|
63
63
|
const IDtypeBack = '请在后置摄像头下展示证件反面(如:身份证国徽页)'
|
|
64
64
|
const { Option } = Select;
|
|
@@ -735,8 +735,8 @@ class Video extends Component {
|
|
|
735
735
|
type: 2, // 1 为时间戳⽔印;2 为⽂字⽔印;3 为图⽚⽔印
|
|
736
736
|
id: 2, // ⽔印 ID
|
|
737
737
|
enable: true,
|
|
738
|
-
xPosition:
|
|
739
|
-
yPosition:
|
|
738
|
+
xPosition: 16 * SCALE, // x 轴位置
|
|
739
|
+
yPosition: 8 * SCALE, // y 轴位置
|
|
740
740
|
text: `${this.props.recordMode ==1 ?'远程录制' :'网点录制'} ${this.state.salesBranchCode || ''} ${this.state.branchName || ''} ${this.state.financialOffice || ''}`,
|
|
741
741
|
fontSize: 16 * SCALE, // 字体⼤⼩
|
|
742
742
|
url: '' // ⽔印图⽚ HTTP 地址
|
|
@@ -778,8 +778,8 @@ class Video extends Component {
|
|
|
778
778
|
type: 2, // 1 为时间戳⽔印;2 为⽂字⽔印;3 为图⽚⽔印
|
|
779
779
|
id: 2, // ⽔印 ID
|
|
780
780
|
enable: true,
|
|
781
|
-
xPosition:
|
|
782
|
-
yPosition:
|
|
781
|
+
xPosition: 16, // x 轴位置
|
|
782
|
+
yPosition: 8, // y 轴位置
|
|
783
783
|
text: `${this.props.recordMode ==1 ?'远程录制' :'网点录制'} ${this.state.salesBranchCode || ''} ${this.state.branchName || ''} ${this.state.financialOffice || ''}`,
|
|
784
784
|
fontSize: 16, // 字体⼤⼩
|
|
785
785
|
url: '' // ⽔印图⽚ HTTP 地址
|