This commit is contained in:
parent
2f7cad8952
commit
97075d90da
|
|
@ -498,7 +498,7 @@ const Meeting: React.FC = () => {
|
|||
}])
|
||||
setTextMsg('')
|
||||
} else {
|
||||
message.success('请输入内容!')
|
||||
message.error('请输入内容!')
|
||||
}
|
||||
}
|
||||
// 开关麦克风
|
||||
|
|
@ -670,8 +670,12 @@ const Meeting: React.FC = () => {
|
|||
</span>
|
||||
</div>
|
||||
<div>
|
||||
<img src={item.enableMicr ? ImageUrl.icon22 : ImageUrl.icon22Active} alt="" />
|
||||
<img src={item.enableCamera ? ImageUrl.icon23 : ImageUrl.icon23Active} alt="" />
|
||||
<img src={item.enableMicr ? ImageUrl.icon22 : ImageUrl.icon22Active} alt="" onClick={() => {
|
||||
|
||||
}} />
|
||||
<img src={item.enableCamera ? ImageUrl.icon23 : ImageUrl.icon23Active} alt="" onClick={() => {
|
||||
|
||||
}} />
|
||||
</div>
|
||||
{item.account !== user.account && user.roleId === '1' ? <div className='drag'>
|
||||
{!item.isManager ? <Button
|
||||
|
|
@ -760,7 +764,7 @@ const Meeting: React.FC = () => {
|
|||
<div className={`${styles.meetingUserChatInput} drag`}>
|
||||
<Input.TextArea placeholder="请输入消息" value={textMsg} style={{ flexGrow: 1 }} onChange={(e) => {
|
||||
setTextMsg(e.target.value)
|
||||
}} onPressEnter={sendMsg}></Input.TextArea>
|
||||
}}></Input.TextArea>
|
||||
<Button type="primary" className='m-ant-btn' style={{ flexShrink: 0, marginTop: '4px' }} onClick={sendMsg}>发送</Button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -833,9 +837,10 @@ const Meeting: React.FC = () => {
|
|||
})}
|
||||
</div>
|
||||
<div>
|
||||
<Checkbox onChange={() => {
|
||||
<div></div>
|
||||
{/* <Checkbox onChange={() => {
|
||||
|
||||
}}>共享电脑音频</Checkbox>
|
||||
}}>共享电脑音频</Checkbox> */}
|
||||
<div>
|
||||
<Button type="primary" onClick={() => { setIsSharedScreenModal(false) }} style={{ backgroundColor: '#31353A', marginRight: '14px' }}>取消</Button>
|
||||
<Button type="primary" className='m-ant-btn' onClick={() => clickSharedScreen()}>共享</Button>
|
||||
|
|
|
|||
Loading…
Reference in New Issue