<template>
|
<div class="hello" ref="volWangEditor"></div>
|
</template>
|
|
<script>
|
let E = null;
|
|
async function loadWangEditor() {
|
if (!E) {
|
const module = await import("wangeditor");
|
E = module.default || module;
|
}
|
return E;
|
}
|
|
export default {
|
props: {
|
url: {
|
//上传图片的url
|
type: String,
|
default: "",
|
},
|
upload: {
|
//上传方法
|
type: Function,
|
// (file, insertImgFn) => {}
|
default: null,
|
},
|
uploadCount: {
|
//最多可以上传(图片)的数量
|
type: Number,
|
default: 3,
|
},
|
modelValue: "",
|
width: {
|
type: String,
|
default: "100%",
|
},
|
height: {
|
type: Number,
|
default: 250,
|
},
|
minWidth: {
|
type: Number,
|
default: 650,
|
},
|
minHeight: {
|
type: Number,
|
default: 100,
|
},
|
},
|
name: "wang-editor",
|
data() {
|
return {
|
lastHtml: "",
|
change: false,
|
editor: null,
|
init: false,
|
};
|
},
|
watch: {
|
modelValue(newVal, val) {
|
if (
|
(newVal !== val &&
|
this.lastHtml !== "" &&
|
val === this.lastHtml &&
|
this.editor.txt.html() === this.lastHtml) ||
|
this.editor.txt.html() === ""
|
) {
|
this.editor.txt.html(newVal);
|
}
|
this.lastHtml = newVal;
|
},
|
},
|
destroyed() {
|
this.editor = null;
|
},
|
async mounted() {
|
this.editor = null;
|
const EditorConstructor = await loadWangEditor();
|
let editor = new EditorConstructor(this.$refs.volWangEditor);
|
this.editor = editor;
|
let $this = this;
|
editor.config.zIndex = 500;
|
editor.config.height = this.height;
|
editor.config.onchange = (html) => {
|
if (!this.init && this.lastHtml === "") {
|
this.lastHtml = html;
|
this.init = true;
|
}
|
this.$emit("update:modelValue", html);
|
};
|
// editor.config.uploadFileName = "fileInput";
|
// //设置header
|
// editor.config.uploadImgHeaders = {
|
// Accept: "application/json",
|
// Authorization: this.$store.getters.getToken(),
|
// };
|
//上传地址
|
editor.config.uploadImgServer = this.http.ipAddress + this.url;
|
// console.log(editor.config.uploadImgServer);
|
editor.config.customUploadImg = function (resultFiles, insertImgFn) {
|
// 自定义上传
|
if ($this.upload) {
|
console.log("调用自定义的上传方法");
|
console.log(resultFiles);
|
// resultFiles 是 input 中选中的文件列表
|
// insertImgFn 是获取图片 url 后,插入到编辑器的方法
|
//有可能会上传多张图片,上传多张图片就需要进行遍历
|
resultFiles.map((item) => {
|
// _this.getUploadImg(item, insertImgFn);
|
$this.upload(item, insertImgFn);
|
});
|
} else {
|
let formData = new FormData();
|
let nameArr = [];
|
resultFiles.forEach(function (file) {
|
formData.append("fileInput", file, file.name);
|
nameArr.push(file.name);
|
});
|
if (!$this.url) {
|
$this.$message.error("未配置url");
|
return;
|
}
|
$this.http.post($this.url, formData, true).then((x) => {
|
if (!x.status) {
|
return $this.$message.error(x.message);
|
}
|
nameArr.forEach(m=>{
|
insertImgFn($this.http.ipAddress + x.data + m);
|
})
|
// let imgs = nameArr
|
// .map((m) => {
|
// return $this.http.ipAddress + x.data + m;
|
// })
|
// .join(",");
|
// insertImgFn(imgs);
|
});
|
}
|
};
|
editor.create();
|
editor.txt.html(this.modelValue);
|
},
|
};
|
</script>
|
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
<style scoped>
|
h1,
|
h2 {
|
font-weight: normal;
|
}
|
ul {
|
list-style-type: none;
|
padding: 0;
|
}
|
li {
|
display: inline-block;
|
margin: 0 10px;
|
}
|
a {
|
color: #42b983;
|
}
|
</style>
|