react_hsbc_teller 0.5.2 → 0.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
|
Binary file
|
|
Binary file
|
|
@@ -219,7 +219,7 @@ function sendMessage(to, from, type, message) {
|
|
|
219
219
|
// 转化为xml
|
|
220
220
|
websocketsend(json2xml(temp));
|
|
221
221
|
} else {
|
|
222
|
-
|
|
222
|
+
console.log('请先登录!');
|
|
223
223
|
}
|
|
224
224
|
}
|
|
225
225
|
// 加入群 from---加入群的人的jid,to--群名称
|
|
@@ -241,7 +241,7 @@ function joinRoom(from, to) {
|
|
|
241
241
|
// 转化为xml
|
|
242
242
|
websocketsend(json2xml(temp));
|
|
243
243
|
} else {
|
|
244
|
-
|
|
244
|
+
console.log('请先登录!');
|
|
245
245
|
}
|
|
246
246
|
}
|
|
247
247
|
export {
|
|
@@ -3311,8 +3311,9 @@ class Video extends Component {
|
|
|
3311
3311
|
]}>
|
|
3312
3312
|
<div>
|
|
3313
3313
|
<div className="invitationDiv">
|
|
3314
|
-
<span class="modalSpan">员工号:</span><input className="inputClick" placeholder="请输入员工号" value={this.state.employeeNumber} onChange={e => this.handleChange(e)}></input>
|
|
3315
|
-
<span className="invitationSpan" onClick={this.queryStaff}>查 询</span>
|
|
3314
|
+
<span class="modalSpan">员工号:</span><input type="number"className="inputClick" placeholder="请输入员工号" value={this.state.employeeNumber} onChange={e => this.handleChange(e)}></input>
|
|
3315
|
+
{/* <span className="invitationSpan" onClick={this.queryStaff}>查 询</span> */}
|
|
3316
|
+
<Button className="invitationSpan" type="primary" danger onClick={this.queryStaff}>查 询</Button>
|
|
3316
3317
|
</div>
|
|
3317
3318
|
<div className="invitationDiv">
|
|
3318
3319
|
<span class="modalSpan"> 姓名:</span><span>{this.state.employeeName}</span>
|
|
@@ -98,13 +98,15 @@
|
|
|
98
98
|
border-radius: 6px;
|
|
99
99
|
}
|
|
100
100
|
.invitationSpan{
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
101
|
+
margin-top: 5px;
|
|
102
|
+
margin-right: 15px;
|
|
103
|
+
float: right;
|
|
104
|
+
height: 37px !important;
|
|
105
|
+
width: 80px !important;
|
|
106
|
+
font-size: 16px !important;
|
|
107
|
+
border: 1px #3E505D solid!important;
|
|
108
|
+
background: #3E505D !important;
|
|
109
|
+
color: #fff!important;
|
|
108
110
|
}
|
|
109
111
|
.inputClick{
|
|
110
112
|
width: 65%;
|
|
@@ -122,7 +124,12 @@
|
|
|
122
124
|
}
|
|
123
125
|
.invitationDiv{
|
|
124
126
|
margin-left: 40px;
|
|
125
|
-
margin-bottom: 15px
|
|
127
|
+
margin-bottom: 15px;
|
|
128
|
+
input::-webkit-inner-spin-button {
|
|
129
|
+
-webkit-appearance: none;
|
|
130
|
+
appearance: none;
|
|
131
|
+
margin: 0;
|
|
132
|
+
}
|
|
126
133
|
}
|
|
127
134
|
.faceImg{
|
|
128
135
|
width: 200px;
|
|
@@ -308,7 +315,7 @@
|
|
|
308
315
|
}
|
|
309
316
|
.endModal{
|
|
310
317
|
font-size: 16px;
|
|
311
|
-
padding: 56px 30px
|
|
318
|
+
padding: 56px 30px 0px 30px;
|
|
312
319
|
color: #333333;
|
|
313
320
|
}
|
|
314
321
|
.inspection{
|