引入导出原始数据接口

This commit is contained in:
caozehui
2025-01-21 14:52:44 +08:00
parent cce3e6861a
commit 400328d5fa
3 changed files with 33 additions and 13 deletions

View File

@@ -47,6 +47,13 @@ export const getTableData = (params: {
return http.post("/result/resultData/", params, {loading: false});
}
export const exportRawData= () => {
return http.download("/result/exportRawData", {loading: false});
export const exportRawData = (params: {
scriptType: string | null,
scriptId: string,
devId: string,
devNum: string,
code: number,
index: number,
}) => {
return http.download("/result/exportRawData", params, {loading: false});
}