处理上传图片变成附件了的问题

This commit is contained in:
暮光:城中城
2023-02-16 22:41:11 +08:00
parent e5b7e68cb0
commit f8118067e5
3 changed files with 2 additions and 4 deletions

View File

@@ -47,7 +47,6 @@ let editorConfig = ref({
// 最大支持50M图片上传
maxFileSize: 50 * 1024 * 1024,
withCredentials: true,
meta: {pageId: route.query.pageId},
},
uploadVideo: {
server: import.meta.env.VITE_APP_BASE_API + '/zyplayer-doc-wiki/page/file/wangEditor/upload',
@@ -55,7 +54,6 @@ let editorConfig = ref({
// 最大支持300M图片上传
maxFileSize: 300 * 1024 * 1024,
withCredentials: true,
meta: {pageId: route.query.pageId},
}
}
});