保存进度!

This commit is contained in:
2023-09-27 19:57:33 +08:00
parent b8df96ac42
commit 0c2c762721
12 changed files with 111 additions and 48 deletions

View File

@@ -0,0 +1,16 @@
/*
* @Author: Kane
* @Date: 2023-09-27 14:13:47
* @LastEditors: Kane
* @FilePath: /task_schedule/src/utils/fileUpload.ts
* @Description: 文件上传相关
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
interface FileUploadResponse
{
success: boolean;
message: string;
fileList: string[];
}