|
@@ -145,9 +145,10 @@ const toolbarConfig = {
|
|
|
// 单个文件的最大体积限制,默认为 2M
|
|
|
maxFileSize: 1 * 1024 * 1024, // 1M
|
|
|
// 最多可上传几个文件,默认为 100
|
|
|
- maxNumberOfFiles: 10,
|
|
|
+ maxNumberOfFiles: 1,
|
|
|
// 选择文件时的类型限制,默认为 ['image/*'] 。如不想限制,则设置为 []
|
|
|
allowedFileTypes: ["image/*"],
|
|
|
+ fieldName: "file", //上传的文件名称
|
|
|
// 自定义增加 http header
|
|
|
headers: {
|
|
|
"Content-Type": "multipart/form-data",
|
|
@@ -164,20 +165,74 @@ const toolbarConfig = {
|
|
|
customInsert(res, insertFn) {
|
|
|
// JS 语法
|
|
|
// res 即服务端的返回结果
|
|
|
-
|
|
|
console.log(
|
|
|
"%c custom insert >>>",
|
|
|
"background: blue; color: #fff",
|
|
|
res
|
|
|
);
|
|
|
-
|
|
|
// 从 res 中找到 url alt href ,然后插入图片
|
|
|
insertFn(url, alt, href);
|
|
|
},
|
|
|
},
|
|
|
},
|
|
|
};
|
|
|
-const editorConfig = { placeholder: "请输入正文" };
|
|
|
+const imageUrl = ref("");
|
|
|
+const editorConfig = {
|
|
|
+ placeholder: "请输入正文",
|
|
|
+ MENU_CONF: {
|
|
|
+ uploadImage: {
|
|
|
+ // 上传图片的配置
|
|
|
+ server: `https://www.yixiangvr.com/api/upload/image`, // 上传图片的网址
|
|
|
+ fieldName: "file", // 上传文件的名称
|
|
|
+ },
|
|
|
+ // uploadImage: {
|
|
|
+ // server: `https://www.yixiangvr.com/api/upload/image`,
|
|
|
+ // // 单个文件的最大体积限制,默认为 2M
|
|
|
+ // maxFileSize: 1 * 1024 * 1024, // 1M
|
|
|
+ // // 最多可上传几个文件,默认为 100
|
|
|
+ // maxNumberOfFiles: 1,
|
|
|
+ // // 选择文件时的类型限制,默认为 ['image/*'] 。如不想限制,则设置为 []
|
|
|
+ // allowedFileTypes: ["image/*"],
|
|
|
+ // // 自定义增加 http header
|
|
|
+ // headers: {
|
|
|
+ // "Content-Type":
|
|
|
+ // "multipart/form-data; boundary=----WebKitFormBoundarycuSQMPBGnwAMTv7h",
|
|
|
+ // },
|
|
|
+ // timeout: 5 * 1000, // 5 秒
|
|
|
+
|
|
|
+ // onBeforeUpload(file) {
|
|
|
+ // console.log(file);
|
|
|
+ // const formdata = new FormData();
|
|
|
+ // //循环找出文本二进制文件
|
|
|
+ // for (let key in file) {
|
|
|
+ // console.log(file[key].data);
|
|
|
+ // formdata.append("image", file[key].data);
|
|
|
+ // }
|
|
|
+ // console.log("onBeforeUpload", file);
|
|
|
+ // useUploadImage(formdata).then((res) => {
|
|
|
+ // imageUrl.value = res.imageFile.value;
|
|
|
+ // // 自定义插入图片
|
|
|
+ // });
|
|
|
+ // },
|
|
|
+ // // 单个文件上传成功之后
|
|
|
+ // onSuccess(file, res) {
|
|
|
+ // console.log(file);
|
|
|
+ // },
|
|
|
+ // customInsert(res, insertFn) {
|
|
|
+ // // JS 语法
|
|
|
+ // // res 即服务端的返回结果
|
|
|
+ // console.log(
|
|
|
+ // "%c custom insert >>>",
|
|
|
+ // "background: blue; color: #fff",
|
|
|
+ // res
|
|
|
+ // );
|
|
|
+
|
|
|
+ // insertFn(imageUrl.value);
|
|
|
+ // // 从 res 中找到 url alt href ,然后插入图片
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ },
|
|
|
+};
|
|
|
|
|
|
// 组件销毁时,也及时销毁编辑器
|
|
|
onBeforeUnmount(() => {
|
|
@@ -242,7 +297,10 @@ const handleCustomUploadImage = async (options) => {
|
|
|
const { imageFile } = await useUploadImage(formdata);
|
|
|
|
|
|
console.log("imageCove.value", imageCove.value);
|
|
|
- if (imageFile.value && route.query.type == "forum" || route.query.type == "post") {
|
|
|
+ if (
|
|
|
+ (imageFile.value && route.query.type == "forum") ||
|
|
|
+ route.query.type == "post"
|
|
|
+ ) {
|
|
|
imageCove.value = [imageFile.value];
|
|
|
console.log("imageFile", imageCove.value);
|
|
|
} else if (imageFile.value) imageCover.value = imageFile.value;
|
|
@@ -386,8 +444,8 @@ const handleReciveTopic = (topic) => {
|
|
|
const cancel = () => {
|
|
|
router.go(-1);
|
|
|
};
|
|
|
-const verdict = route.query.verdict
|
|
|
-const dict = route.query.dict
|
|
|
+const verdict = route.query.verdict;
|
|
|
+const dict = route.query.dict;
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
@@ -491,11 +549,18 @@ const dict = route.query.dict
|
|
|
<div class="fixed__left">字数:{{ wordLen }}</div>
|
|
|
<div class="fixed__right">
|
|
|
<el-button @click="cancel">取消发布</el-button>
|
|
|
- <el-button v-if="dict != 2" @click="handleRecordMoment('draft')">存草稿</el-button>
|
|
|
- <el-button v-if="dict != 2" type="primary" @click="handleRecordMoment('normal')"
|
|
|
+ <el-button v-if="dict != 2" @click="handleRecordMoment('draft')"
|
|
|
+ >存草稿</el-button
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ v-if="dict != 2"
|
|
|
+ type="primary"
|
|
|
+ @click="handleRecordMoment('normal')"
|
|
|
+ >发布</el-button
|
|
|
+ >
|
|
|
+ <el-button v-if="dict == 2" type="primary" @click="redact()"
|
|
|
>发布</el-button
|
|
|
>
|
|
|
- <el-button v-if="dict == 2" type="primary" @click="redact()">发布</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-footer>
|