优化样式
This commit is contained in:
parent
65f7fd9548
commit
8b261f7ec6
|
|
@ -7,21 +7,6 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
|
|
||||||
.meetingContentUserRole {
|
|
||||||
background: #FDC229;
|
|
||||||
border-radius: 6px;
|
|
||||||
width: 34px;
|
|
||||||
height: 24px;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
margin-right: 6px;
|
|
||||||
|
|
||||||
>img {
|
|
||||||
width: 14px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.meetingContentUserName {
|
.meetingContentUserName {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
@ -31,6 +16,20 @@
|
||||||
padding: 0 4px;
|
padding: 0 4px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
.meetingContentUserRole {
|
||||||
|
background: #FDC229;
|
||||||
|
border-radius: 6px;
|
||||||
|
padding: 4px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
margin-right: 6px;
|
||||||
|
|
||||||
|
>img {
|
||||||
|
width: 12px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
>img {
|
>img {
|
||||||
width: 18px;
|
width: 18px;
|
||||||
margin-right: 4px;
|
margin-right: 4px;
|
||||||
|
|
|
||||||
|
|
@ -1274,10 +1274,11 @@ const meetingContentUser = (item: any) => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className={styles.meetingContentUser}>
|
<div className={styles.meetingContentUser}>
|
||||||
{item.roleId === '1' || item.isRoomManager ? <div className={styles.meetingContentUserRole}>
|
|
||||||
<img src={ImageUrl.icon32} alt="" />
|
|
||||||
</div> : null}
|
|
||||||
<div className={styles.meetingContentUserName}>
|
<div className={styles.meetingContentUserName}>
|
||||||
|
{item.roleId === '1' || item.isRoomManager ?
|
||||||
|
<div className={styles.meetingContentUserRole}>
|
||||||
|
<img src={ImageUrl.icon32} alt="" />
|
||||||
|
</div> : null}
|
||||||
{!item.enableMicr ? <img src={item.enableMicr ? ImageUrl.icon22 : ImageUrl.icon22Active} alt="" /> : ''}
|
{!item.enableMicr ? <img src={item.enableMicr ? ImageUrl.icon22 : ImageUrl.icon22Active} alt="" /> : ''}
|
||||||
<span>{item.userName}</span>
|
<span>{item.userName}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue