Files
pqs-9100_client/frontend/src/api/check/test/index.ts

5 lines
212 B
TypeScript
Raw Normal View History

2024-12-23 13:23:28 +08:00
import http from "@/api";
2024-12-24 19:21:43 +08:00
export const getCheckItemDetail = (params: { deviceId: string, chnNum: number, checkItemId?: string }) => {
2024-12-23 13:23:28 +08:00
return http.post<any>("/check/test/detail/", params, {loading: false});
}