feat(oss): 添加测试上传功能

新增上传测试模态框组件,支持图片和文件上传测试
在OSS管理页面添加测试上传按钮
为上传API添加Content-Type头部配置
修复全屏引导hook的类型断言问题
This commit is contained in:
dap
2026-01-20 11:29:56 +08:00
parent 1246f8f77b
commit 7b74975819
4 changed files with 71 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
import type { AxiosRequestConfig } from '@vben/request';
import { alovaInstance } from '#/utils/http';
import { ContentTypeEnum } from '#/utils/http/helper';
/**
* Axios上传进度事件
@@ -33,7 +34,12 @@ export function uploadApi(
return alovaInstance.post<UploadResult>(
'/resource/oss/upload',
{ file, ...otherData },
{ timeout: 60_000 },
{
timeout: 60_000,
headers: {
'Content-Type': ContentTypeEnum.FORM_DATA,
},
},
);
}