右侧表格1

This commit is contained in:
caozehui
2025-01-06 19:20:36 +08:00
parent 336ee843cc
commit 27eb9a7d93
5 changed files with 118 additions and 285 deletions

View File

@@ -27,7 +27,7 @@ export const getTreeData = (params: {
devId: string,
devNum: string,
scriptType: string | null,
code: string
code: number,
}) => {
return http.post<CheckData.TreeItem[]>("/result/treeData/", params, {loading: true});
}
@@ -37,10 +37,12 @@ export const getTreeData = (params: {
* @param params
*/
export const getTableData = (params: {
scriptType: string | null,
scriptId: string,
deviceId: string,
chnNum: string,
scriptType: string | null
devId: string,
devNum: string,
code: number,
index: number,
}) => {
return http.post("/result/resultData/", params, {loading: false});
}