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