react_hsbc_teller 1.5.2 → 1.5.3
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
|
@@ -198,16 +198,16 @@ class Sign extends Component {
|
|
|
198
198
|
></canvas>
|
|
199
199
|
<div className='signButton'>
|
|
200
200
|
{
|
|
201
|
-
!this.state.isSignOk && <Button className="modelButtonCancelNo"
|
|
201
|
+
!this.state.isSignOk && <Button className="modelButtonCancelNo">清除修改</Button>
|
|
202
202
|
}
|
|
203
203
|
{
|
|
204
|
-
this.state.isSignOk && <Button className="modelButtonCancel" onClick={this.clearSign}
|
|
204
|
+
this.state.isSignOk && <Button className="modelButtonCancel" onClick={this.clearSign}>清除修改</Button>
|
|
205
205
|
}
|
|
206
206
|
{
|
|
207
|
-
this.state.isSignOk && <Button className="modelButtonOk" type="primary" danger onClick={this.handleOkSign}
|
|
207
|
+
this.state.isSignOk && <Button className="modelButtonOk" type="primary" danger onClick={this.handleOkSign}>确认提交</Button>
|
|
208
208
|
}
|
|
209
209
|
{
|
|
210
|
-
!this.state.isSignOk && <Button className="modelButtonCancelNo" type="primary" danger
|
|
210
|
+
!this.state.isSignOk && <Button className="modelButtonCancelNo" type="primary" danger >确认提交</Button>
|
|
211
211
|
}
|
|
212
212
|
</div>
|
|
213
213
|
</div>
|
|
@@ -4126,7 +4126,7 @@ class Video extends Component {
|
|
|
4126
4126
|
let x = 0
|
|
4127
4127
|
let y = 0
|
|
4128
4128
|
// if(os.isTablet){
|
|
4129
|
-
width = ((right - left)* window.screen.width / document.body.clientWidth) -
|
|
4129
|
+
width = ((right - left)* window.screen.width / document.body.clientWidth) - 10
|
|
4130
4130
|
height = ((bottom - top)* window.screen.width / document.body.clientWidth) - 30
|
|
4131
4131
|
x = (left * window.screen.width / document.body.clientWidth)
|
|
4132
4132
|
y = (top* window.screen.width / document.body.clientWidth) + 8
|
|
@@ -5153,7 +5153,7 @@ class Video extends Component {
|
|
|
5153
5153
|
|
|
5154
5154
|
|
|
5155
5155
|
</Modal>
|
|
5156
|
-
<Modal title="
|
|
5156
|
+
<Modal title="销售人员合并签署" width={600} destroyOnClose={true} centered={true} visible={isTranscribing} onCancel={this.onCancelSign} footer={[]}>
|
|
5157
5157
|
<div className="content">
|
|
5158
5158
|
<SignMy
|
|
5159
5159
|
handleOkSign={this.handleOkSign}
|