优化显示

This commit is contained in:
yj 2024-07-18 18:02:16 +08:00
parent 2d9db898f8
commit c770acc067
2 changed files with 6 additions and 1 deletions

View File

@ -330,6 +330,7 @@
} }
>div { >div {
flex-shrink: 0;
width: 40px; width: 40px;
height: 40px; height: 40px;
overflow: hidden; overflow: hidden;

View File

@ -538,7 +538,11 @@ const Meeting: React.FC = () => {
<div><img src={ImageUrl.avatar} alt="" /></div> <div><img src={ImageUrl.avatar} alt="" /></div>
<span> <span>
{item.userName} {item.userName}
{item.roleId === '1' || item.isManager ? <span style={{ color: '#02B188', marginLeft: '4px' }}></span> : null} {item.roleId === '1' || item.isManager ?
<span style={{ color: '#02B188', marginLeft: '4px' }}>
{item.roleId === '1' ? '主持人' : '临时主持人'}
</span>
: null}
</span> </span>
</div> </div>
<div> <div>