wangfukang 7 days ago
parent
commit
10485e6839
  1. 10
      package1/tabbar/fishRelease.vue

10
package1/tabbar/fishRelease.vue

@ -268,9 +268,17 @@
if (!this.editorIns || !this.pendingEditorHtml) return if (!this.editorIns || !this.pendingEditorHtml) return
if (this.editorIns.setContents) { if (this.editorIns.setContents) {
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) { parseJsonList(value) {
if (!value) return [] if (!value) return []

Loading…
Cancel
Save