修复富文本框按顺序上传,更新榜单增加时间字段

This commit is contained in:
sj
2022-11-01 14:23:15 +08:00
parent 6a2910c927
commit b77de18506
2 changed files with 38 additions and 9 deletions
+4 -2
View File
@@ -464,11 +464,13 @@ export default {
sureUrls() {
let str = ''
this.urls.forEach(item => {
str += '<img src="' + item + '">'
// str += '<img src="' + item + '">'
//实现指定位置插入图片
nowEditor.editor.execCommand('insertimage',{src:item})
// this.$set(this.value, this.value.length, item)
})
nowEditor.dialog.close(true)
nowEditor.editor.setContent(str, true)
// nowEditor.editor.setContent(str, true)
this.listDialogVisible = false
}
}