Merge remote-tracking branch 'yudao/dev' into dev

This commit is contained in:
dhb52
2024-02-29 21:03:19 +08:00
94 changed files with 248 additions and 36 deletions

View File

@ -38,3 +38,8 @@ export const getFilePresignedUrl = (path: string) => {
export const createFile = (data: any) => {
return request.post({ url: '/infra/file/create', data })
}
// 上传文件
export const updateFile = (data: any) => {
return request.upload({ url: '/infra/file/upload', data })
}