微调
This commit is contained in:
@@ -1,5 +1,13 @@
|
||||
import http from "@/api";
|
||||
|
||||
export const getCheckItemDetail = (params: { deviceId: string, chnNum: number, checkItemId?: string }) => {
|
||||
return http.post<any>("/check/test/detail/", params, {loading: false});
|
||||
export const getFormData = (params: { deviceId: string, chnNum: number}) => {
|
||||
return http.post<any>("/check/detail/", params, {loading: false});
|
||||
}
|
||||
|
||||
export const getTreeData = (params: { deviceId: string, chnNum: number, checkItemId: string }) => {
|
||||
return http.post<any>("/check/treeData/", params, {loading: false});
|
||||
}
|
||||
|
||||
export const getCheckData = (params: { deviceId: string, chnNum: number, checkItemId: string }) => {
|
||||
return http.post<any>("/check/data/", params, {loading: false});
|
||||
}
|
||||
Reference in New Issue
Block a user