Commit b96b4270 by Sixong.Zhu

交互优化

parent 9b069739
Showing with 11 additions and 7 deletions
...@@ -339,16 +339,20 @@ ...@@ -339,16 +339,20 @@
if (e.shiftKey || e.ctrlKey || e.altKey) { if (e.shiftKey || e.ctrlKey || e.altKey) {
return; return;
} }
const data = this.getNodeListFromInputBox(); // 避免按一下enter键多次触发发送
this.$emit("send", data);
this.clearInput();
if (this.chatId) {
chatCache[this.chatId] = [];
}
if (this.reloadTimer) { if (this.reloadTimer) {
clearTimeout(this.reloadTimer); clearTimeout(this.reloadTimer);
} }
this.reloadTimer = setTimeout(() => this.getMyChatList(), 120); this.reloadTimer = setTimeout(() => {
const data = this.getNodeListFromInputBox();
this.$emit("send", data);
this.clearInput();
if (this.chatId) {
chatCache[this.chatId] = [];
}
this.getMyChatList();
}, 120);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment