diff --git a/package1/tabbar/fishRelease.vue b/package1/tabbar/fishRelease.vue index 2c945d1..764ca44 100644 --- a/package1/tabbar/fishRelease.vue +++ b/package1/tabbar/fishRelease.vue @@ -268,9 +268,17 @@ if (!this.editorIns || !this.pendingEditorHtml) return if (this.editorIns.setContents) { this.editorIns.setContents({ - html: this.pendingEditorHtml + html: this.pendingEditorHtml, + complete: () => this.hideEditKeyboard() }) } + this.hideEditKeyboard() + }, + hideEditKeyboard() { + if (!this.isEdit) return + setTimeout(() => { + uni.hideKeyboard() + }, 120) }, parseJsonList(value) { if (!value) return []