yangjie #49

Merged
yangqiang merged 71 commits from yangjie into master 2025-03-10 14:21:26 +08:00
1 changed files with 4 additions and 2 deletions
Showing only changes of commit 4776b15026 - Show all commits

View File

@ -2163,7 +2163,6 @@ const Meeting: React.FC = () => {
chatListIten: item,
}
})
setTextMsg('');
chatScrollBotton()
} else {
message.error('请输入内容!')
@ -3162,7 +3161,10 @@ const Meeting: React.FC = () => {
<Input.TextArea placeholder="请输入消息" value={textMsg} style={{ flexGrow: 1 }} onChange={(e) => {
setTextMsg(e.target.value)
}}></Input.TextArea>
<Button type="primary" className='m-ant-btn' style={{ flexShrink: 0, marginTop: '4px' }} onClick={() => sendMsg()}></Button>
<Button type="primary" className='m-ant-btn' style={{ flexShrink: 0, marginTop: '4px' }} onClick={() => {
sendMsg()
setTextMsg('');
}}></Button>
</div>
</div>
: