NEZ-2485 fix: terminal 发送文本到所有SSH终端失效 以及样式问题

This commit is contained in:
zhangyu
2022-12-28 14:57:46 +08:00
parent ae4a5f3a6d
commit 4959436663
2 changed files with 8 additions and 4 deletions

View File

@@ -76,7 +76,7 @@ export default {
const height = parseInt(consoleBox.offsetHeight)
const winStyle = {
width: width,
height: height - 100,
height: height,
cols: this.term.cols, // cols和rows在resizeConsole方法已经设置
rows: this.term.rows
}
@@ -309,9 +309,8 @@ export default {
enterStr (message) {
if (this.terminalSocket && this.terminal.isLogin) {
this.terminalSocket.send(message)
setTimeout(()=>{
this.terminalSocket.send('\n')
}, 100)
this.terminalSocket.send('\n')
this.term.scrollToBottom()
}
}
},