增加设备管理

This commit is contained in:
yj 2024-09-10 09:25:48 +08:00
parent 92dea100e8
commit 36becdc6c4
1 changed files with 25 additions and 0 deletions

View File

@ -1496,6 +1496,14 @@ const Meeting: React.FC = () => {
getRoomKickout(state.channelId, item.uid, item.userName) getRoomKickout(state.channelId, item.uid, item.userName)
}} }}
></Button> : null} ></Button> : null}
{item.uid !== user.uid ? <Button
type="primary"
className='m-ant-btn'
size={'small'}
onClick={() => {
}}
></Button> : null}
</div> </div>
}> }>
<div className={styles.meetingContentOperation}> <div className={styles.meetingContentOperation}>
@ -1669,6 +1677,15 @@ const Meeting: React.FC = () => {
getRoomKickout(state.channelId, item.uid, item.userName) getRoomKickout(state.channelId, item.uid, item.userName)
}} }}
></Button> ></Button>
<Button
type="primary"
className='m-ant-btn'
style={{ marginTop: '10px', width: '100%' }}
size={'small'}
onClick={() => {
}}
></Button>
</div> </div>
}> }>
<EllipsisOutlined style={{ <EllipsisOutlined style={{
@ -1801,6 +1818,14 @@ const Meeting: React.FC = () => {
getRoomKickout(state.channelId, roomUserItem.uid, roomUserItem.userName) getRoomKickout(state.channelId, roomUserItem.uid, roomUserItem.userName)
}} }}
></Button> : null} ></Button> : null}
{roomUserItem.uid !== user.uid ? <Button
type="primary"
className='m-ant-btn'
size={'small'}
onClick={() => {
}}
></Button> : null}
</div> : <div style={{ color: 'white' }}></div> </div> : <div style={{ color: 'white' }}></div>
}> }>
<div> <div>