fix(biji): 修复图片上传和预览相关问题

-优化图片预览接口返回信息,提高错误处理的可读性- 在图片上传时添加基础 URL,确保正确的图片路径
- 更新 Vite 配置,修复开发环境的代理设置
This commit is contained in:
2025-08-14 16:55:56 +08:00
parent 49eba5ee96
commit fd3e2a450f
4 changed files with 10 additions and 8 deletions

View File

@@ -66,9 +66,10 @@ const initVditor = () => {
if (!file) return;
uploadImage(file).then(res => {
const url = res.url;
// 使用 file.name 替代 files.name 保证一致性
vditor.value.insertValue(`![${file.name}](${url})`);
const url = res.url;
// 使用 file.name 替代 files.name 保证一致性
const baseUrl = import.meta.env.VITE_API_BASE_URL || '';
vditor.value.insertValue(`![${file.name}](${baseUrl}${url})`);
}).catch(() => {
ElMessage.error('图片上传失败');
});