no message

This commit is contained in:
kuaifan 2023-04-17 12:37:22 +08:00
parent 0f5f7c515a
commit 8f30693473

View File

@ -946,7 +946,7 @@ export default {
}, },
onSend(type) { onSend(type) {
this.hidePopover() this.hidePopover('send')
this.rangeIndex = 0 this.rangeIndex = 0
this.$store.state.messengerSearchKey = {dialog: '', contacts: ''} this.$store.state.messengerSearchKey = {dialog: '', contacts: ''}
if (type) { if (type) {
@ -1014,9 +1014,12 @@ export default {
} }
}, },
hidePopover() { hidePopover(action) {
this.showMenu = false; this.showMenu = false;
this.showMore = false; this.showMore = false;
if (action === 'send') {
return
}
this.showEmoji = false; this.showEmoji = false;
this.emojiQuickShow = false; this.emojiQuickShow = false;
}, },