refactor: 项目结构优化调整

This commit is contained in:
Ray.Hao
2025-12-20 21:56:48 +08:00
parent 5851976c5d
commit 65ad4fe59f
68 changed files with 2463 additions and 1761 deletions

View File

@@ -1,4 +1,5 @@
import request from "@/utils/request";
import type { FileInfo } from "@/types/api";
const FileAPI = {
/** 上传文件 (传入 FormData上传进度回调 */
@@ -57,8 +58,3 @@ const FileAPI = {
};
export default FileAPI;
export interface FileInfo {
name: string;
url: string;
}