react_hsbc_teller 0.6.1 → 0.6.5
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
|
@@ -54,8 +54,8 @@ export default class foot extends Component {
|
|
|
54
54
|
const {clickedOcr,clickedFacial,isTranscribing,img,cameraImg,screenName,suspendName,customerList,menus} = this.props
|
|
55
55
|
const content = (
|
|
56
56
|
<div>
|
|
57
|
-
{customerList.map((item)=>{
|
|
58
|
-
return <div className="customer" onClick={this.customerFaceClick.bind(this,item)}>
|
|
57
|
+
{customerList.map((item,index)=>{
|
|
58
|
+
return <div key={index}className="customer" onClick={this.customerFaceClick.bind(this,item)}>
|
|
59
59
|
<img className="imgClass" alt="" src={require("../../assets/img/youke.png").default} />
|
|
60
60
|
<li className="listLi" key={item.customerId}>{item.name}</li>
|
|
61
61
|
</div>
|
|
@@ -67,8 +67,8 @@ export default class foot extends Component {
|
|
|
67
67
|
const defaultList = (
|
|
68
68
|
<div className="total totalTwo">
|
|
69
69
|
{
|
|
70
|
-
menus.map((item)=>{
|
|
71
|
-
return <div className='footHover'>
|
|
70
|
+
menus.map((item,index)=>{
|
|
71
|
+
return <div key={index}className='footHover'>
|
|
72
72
|
{
|
|
73
73
|
isTranscribing &&
|
|
74
74
|
<div className="one" onClick={this.transcribingClick.bind(this)}>
|
|
@@ -2821,7 +2821,7 @@ class Video extends Component {
|
|
|
2821
2821
|
<span className='labelClass'>
|
|
2822
2822
|
{
|
|
2823
2823
|
meetingInfo.customers.map((item, index) => {
|
|
2824
|
-
return <label>
|
|
2824
|
+
return <label key={index}>
|
|
2825
2825
|
{item}
|
|
2826
2826
|
{
|
|
2827
2827
|
meetingInfo.customers.length > 0 && index != meetingInfo.customers.length - 1 && <label>,</label>
|
|
@@ -2835,8 +2835,8 @@ class Video extends Component {
|
|
|
2835
2835
|
const tabTitleList = (
|
|
2836
2836
|
<div className="button">
|
|
2837
2837
|
{
|
|
2838
|
-
this.state.tabTitles.map((item) => {
|
|
2839
|
-
return <div className={`${this.state.isSelect == item.value ? 'selectSee' : "noSelest"}`} onClick={this.switchSelect.bind(this, item.value)}>
|
|
2838
|
+
this.state.tabTitles.map((item,index) => {
|
|
2839
|
+
return <div key={index} className={`${this.state.isSelect == item.value ? 'selectSee' : "noSelest"}`} onClick={this.switchSelect.bind(this, item.value)}>
|
|
2840
2840
|
{item.name}
|
|
2841
2841
|
</div>
|
|
2842
2842
|
})
|
|
@@ -2846,8 +2846,8 @@ class Video extends Component {
|
|
|
2846
2846
|
const camera = (
|
|
2847
2847
|
<div class="cameraAnMicrophone">
|
|
2848
2848
|
{
|
|
2849
|
-
this.state.cameraList.map((item) => {
|
|
2850
|
-
return <div>
|
|
2849
|
+
this.state.cameraList.map((item,index) => {
|
|
2850
|
+
return <div key={index}>
|
|
2851
2851
|
<label className="radio">
|
|
2852
2852
|
<input type="radio" name="camere" value={item.actionid} style={{float: 'left'}} checked={this.state.cameraValue == item.actionid} onChange={(e) => this.getCameraValue(e)} /><i></i>
|
|
2853
2853
|
{item.actionname}
|
|
@@ -2862,8 +2862,8 @@ class Video extends Component {
|
|
|
2862
2862
|
const microphone = (
|
|
2863
2863
|
<div>
|
|
2864
2864
|
{
|
|
2865
|
-
this.state.microphoneList.map((item) => {
|
|
2866
|
-
return <div class="cameraAnMicrophone">
|
|
2865
|
+
this.state.microphoneList.map((item,index) => {
|
|
2866
|
+
return <div key={index} class="cameraAnMicrophone">
|
|
2867
2867
|
<label className="radio">
|
|
2868
2868
|
<input type="radio" name="microphone" value={item.actionid} style={{float: 'left'}} checked={this.state.microphoneValue == item.actionid} onChange={(e) => this.getMicrophoneValue(e)} /><i></i>
|
|
2869
2869
|
{item.actionname}
|
|
@@ -2877,8 +2877,8 @@ class Video extends Component {
|
|
|
2877
2877
|
const speaker = (
|
|
2878
2878
|
<div>
|
|
2879
2879
|
{
|
|
2880
|
-
this.state.speakerList.map((item) => {
|
|
2881
|
-
return <div class="cameraAnMicrophone">
|
|
2880
|
+
this.state.speakerList.map((item,index) => {
|
|
2881
|
+
return <div key={index} class="cameraAnMicrophone">
|
|
2882
2882
|
{item.actionname}<br />
|
|
2883
2883
|
</div>
|
|
2884
2884
|
})
|
|
@@ -2986,8 +2986,6 @@ class Video extends Component {
|
|
|
2986
2986
|
className={`publishVideoClass`}
|
|
2987
2987
|
autoPlay
|
|
2988
2988
|
muted={true}
|
|
2989
|
-
webkit-playsinline={true}
|
|
2990
|
-
playsinline={true}
|
|
2991
2989
|
/>
|
|
2992
2990
|
<label style={{ display: 'none' }} id="publish_streamId1" type="text" />
|
|
2993
2991
|
|
|
@@ -3452,9 +3450,7 @@ class Video extends Component {
|
|
|
3452
3450
|
{speaker}
|
|
3453
3451
|
</div>
|
|
3454
3452
|
</Modal>
|
|
3455
|
-
<video className="mixedvideo" id="mixedvideo" autoPlay muted={true} width="0" height="0"
|
|
3456
|
-
webkit-playsinline={true} playsInline={true} x5-playsinline="x5-playsinline"
|
|
3457
|
-
x-webkit-airplay={true}></video>
|
|
3453
|
+
<video className="mixedvideo" id="mixedvideo" autoPlay muted={true} width="0" height="0"></video>
|
|
3458
3454
|
</Spin>
|
|
3459
3455
|
</div>);
|
|
3460
3456
|
}
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
font-weight: bold;
|
|
43
43
|
height: 170px;
|
|
44
44
|
position: relative;
|
|
45
|
-
background:
|
|
45
|
+
background: rgba(0, 0, 0, 0.65);
|
|
46
46
|
margin-bottom: 20px;
|
|
47
47
|
border-radius: 6px;
|
|
48
48
|
}
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
.video{
|
|
167
167
|
width: 100%;
|
|
168
168
|
height: 100%;
|
|
169
|
-
background:
|
|
169
|
+
background: rgba(0, 0, 0, 0.65);
|
|
170
170
|
}
|
|
171
171
|
}
|
|
172
172
|
}
|