|
|
|
@ -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 [] |
|
|
|
|