增加设备管理
This commit is contained in:
parent
92dea100e8
commit
36becdc6c4
|
|
@ -1496,6 +1496,14 @@ const Meeting: React.FC = () => {
|
|||
getRoomKickout(state.channelId, item.uid, item.userName)
|
||||
}}
|
||||
>移出会议</Button> : null}
|
||||
{item.uid !== user.uid ? <Button
|
||||
type="primary"
|
||||
className='m-ant-btn'
|
||||
size={'small'}
|
||||
onClick={() => {
|
||||
|
||||
}}
|
||||
>设备管理</Button> : null}
|
||||
</div>
|
||||
}>
|
||||
<div className={styles.meetingContentOperation}>
|
||||
|
|
@ -1669,6 +1677,15 @@ const Meeting: React.FC = () => {
|
|||
getRoomKickout(state.channelId, item.uid, item.userName)
|
||||
}}
|
||||
>移出会议</Button>
|
||||
<Button
|
||||
type="primary"
|
||||
className='m-ant-btn'
|
||||
style={{ marginTop: '10px', width: '100%' }}
|
||||
size={'small'}
|
||||
onClick={() => {
|
||||
|
||||
}}
|
||||
>设备管理</Button>
|
||||
</div>
|
||||
}>
|
||||
<EllipsisOutlined style={{
|
||||
|
|
@ -1801,6 +1818,14 @@ const Meeting: React.FC = () => {
|
|||
getRoomKickout(state.channelId, roomUserItem.uid, roomUserItem.userName)
|
||||
}}
|
||||
>移出会议</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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue