This commit is contained in:
parent
7fcbbfce56
commit
076b6021c8
|
|
@ -258,6 +258,10 @@
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.boxShadow {
|
||||||
|
box-shadow: 0px 0px 10px 0px #7B96FF;
|
||||||
|
}
|
||||||
|
|
||||||
.meetingContentSwiperCardVdeio {
|
.meetingContentSwiperCardVdeio {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
|
||||||
|
|
@ -936,7 +936,7 @@ const Meeting: React.FC = () => {
|
||||||
<div className={`${styles.meetingContentBodyLeft} drag`}>
|
<div className={`${styles.meetingContentBodyLeft} drag`}>
|
||||||
<div className={getMeetingContentBodyLeftModeClass()} >
|
<div className={getMeetingContentBodyLeftModeClass()} >
|
||||||
{roomUserList.map((item: any, index: number) => {
|
{roomUserList.map((item: any, index: number) => {
|
||||||
return <div
|
return (index <= 19 ? <div
|
||||||
className={`${styles.meetingContentSwiperCard}`}
|
className={`${styles.meetingContentSwiperCard}`}
|
||||||
key={index}
|
key={index}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
|
|
@ -948,7 +948,7 @@ const Meeting: React.FC = () => {
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div className={`${styles.meetingContentSwiperCardVdeio} ${currentVideoId === item.uid ? styles.active : ''}`} id={`video-${item.uid}`}>
|
<div className={`${styles.meetingContentSwiperCardVdeio} ${currentVideoId === item.uid ? styles.active : ''} ${item.roleId === '1' || item.isRoomManager ? styles.boxShadow : ''}`} id={`video-${item.uid}`}>
|
||||||
<div className={styles.meetingContentSwiperCardVdeioLoading}>
|
<div className={styles.meetingContentSwiperCardVdeioLoading}>
|
||||||
<Avatar name={item.userName} />
|
<Avatar name={item.userName} />
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -1029,7 +1029,7 @@ const Meeting: React.FC = () => {
|
||||||
<div className={styles.meetingContentSwiperCardBorder}>
|
<div className={styles.meetingContentSwiperCardBorder}>
|
||||||
{item.enableMicr ? <div id={`micr-${item.uid}`}></div> : null}
|
{item.enableMicr ? <div id={`micr-${item.uid}`}></div> : null}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div> : null)
|
||||||
}
|
}
|
||||||
)}
|
)}
|
||||||
{currentLookUserStatus === 0 && currentLookUserAccount ?
|
{currentLookUserStatus === 0 && currentLookUserAccount ?
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue