fix(biji): 修复图片上传和预览相关问题
-优化图片预览接口返回信息,提高错误处理的可读性- 在图片上传时添加基础 URL,确保正确的图片路径 - 更新 Vite 配置,修复开发环境的代理设置
This commit is contained in:
@@ -66,9 +66,10 @@ const initVditor = () => {
|
||||
if (!file) return;
|
||||
|
||||
uploadImage(file).then(res => {
|
||||
const url = res.url;
|
||||
// 使用 file.name 替代 files.name 保证一致性
|
||||
vditor.value.insertValue(``);
|
||||
const url = res.url;
|
||||
// 使用 file.name 替代 files.name 保证一致性
|
||||
const baseUrl = import.meta.env.VITE_API_BASE_URL || '';
|
||||
vditor.value.insertValue(``);
|
||||
}).catch(() => {
|
||||
ElMessage.error('图片上传失败');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user