diff --git a/src/page/Meeting/index.module.scss b/src/page/Meeting/index.module.scss index 88a8c5e..aaba83b 100644 --- a/src/page/Meeting/index.module.scss +++ b/src/page/Meeting/index.module.scss @@ -541,7 +541,6 @@ margin-right: 30px; cursor: pointer; position: relative; - &:last-child { margin: 0; } @@ -559,7 +558,6 @@ position: absolute; color: white; font-size: 14px; - right: -20px; width: 30px; } diff --git a/src/page/Meeting/index.tsx b/src/page/Meeting/index.tsx index 44a1f49..81e1d1a 100644 --- a/src/page/Meeting/index.tsx +++ b/src/page/Meeting/index.tsx @@ -1012,8 +1012,8 @@ const Meeting: React.FC = () => {
changeStatusList(row, itemIndex, rowIndex)} key={rowIndex}> {row.title} - {row.title === '成员列表' ?
{roomUserList.length}
: null} - {row.title === '聊天' && noViewChatList > 0 ?
{noViewChatList}
: null} + {row.title === '成员列表' ?
{roomUserList.length}
: null} + {row.title === '聊天' && noViewChatList > 0 ?
{noViewChatList}
: null}
) })}