This commit is contained in:
caozehui
2024-12-24 19:21:43 +08:00
parent 30c1f90513
commit 5cbdadecc4
6 changed files with 250 additions and 291 deletions

View File

@@ -1,5 +1,5 @@
import http from "@/api";
export const getCheckItemDetail = (params: { checkItemId: string, deviceId: string, chnNum: number }) => {
export const getCheckItemDetail = (params: { deviceId: string, chnNum: number, checkItemId?: string }) => {
return http.post<any>("/check/test/detail/", params, {loading: false});
}