完成基本上传导入前端代码

This commit is contained in:
2023-10-18 18:36:11 +08:00
parent 0caf428d67
commit 05aabea1a2
3 changed files with 108 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
* @Author: Kane
* @Date: 2023-10-17 11:18:19
* @LastEditors: Kane
* @FilePath: /task_schedule/src/utils/api/BIReport.ts
* @FilePath: /task_schedule/src/utils/BIReport.ts
* @Description: BI报表相关的代码
*
* Copyright (c) ${2023} by Kane, All Rights Reserved.
@@ -31,6 +31,8 @@ interface ImportBIReportResponse
importedCount: number,
}
type ImportBIReportResponseHandler = ( response: ImportBIReportResponse, error?: any ) => void;
/**
*
* @param request 请求参数
@@ -72,5 +74,6 @@ export {
type BIReportType,
type ImportBIReportRequest,
type ImportBIReportResponse,
type ImportBIReportResponseHandler,
importBIReport
};