修复移动端任务弹窗关闭之后键盘没有关闭

This commit is contained in:
kuaifan 2022-06-05 21:38:10 +08:00
parent 5c750f7a6f
commit b9b45e8e4f

View File

@ -746,6 +746,9 @@ export default {
this.$refs.owner && this.$refs.owner.handleClose();
this.$refs.assist && this.$refs.assist.handleClose();
this.$refs.chatInput && this.$refs.chatInput.hidePopover();
if (!this.$isDesktop) {
document.activeElement.blur();
}
}
},
immediate: true