This commit is contained in:
caozehui
2025-03-12 15:01:58 +08:00
parent d7cfcc7855
commit a122e9e1b3
2 changed files with 86 additions and 36 deletions

View File

@@ -2,7 +2,7 @@ import http from "@/api";
import {CheckData} from "@/api/check/interface";
export const getBigTestItem = (params: {
reCheckType:number,
reCheckType: number,
planId: string,
devId: string,
}) => {
@@ -31,7 +31,7 @@ export const getTreeData = (params: {
devId?: string,
devNum?: string,
scriptType?: string | null,
code?: number,
code?: string,
}) => {
return http.post<CheckData.TreeItem[]>("/result/treeData/", params, {loading: true});
}
@@ -45,7 +45,7 @@ export const getTableData = (params: {
scriptId: string,
devId: string,
devNum: string,
code: number,
code: string,
index: number,
}) => {
return http.post("/result/resultData/", params, {loading: false});
@@ -56,8 +56,30 @@ export const exportRawData = (params: {
scriptId: string,
devId: string,
devNum: string,
code: number,
code: string,
index: number,
}) => {
return http.download("/result/exportRawData", params, {loading: false});
}
/**
* 更换误差体系
* @param params
*/
export const changeErrorSystem = (params: {
planId: string,
scriptId: string,
errorSysId: string,
deviceId: string,
code: string
}) => {
return http.post("/result/changeErrorSystem", params, {loading: false});
}
/**
* 删除(误差体系切换时产生的)临时表
* @param code
*/
export const deleteTempTable = (code: string) => {
return http.get(`/result/deleteTempTable?code=${code}`, null, {loading: false})
}