eims-ui-mobile/src/service/inspect.ts
@@ -1,6 +1,6 @@ import { http } from '@/utils/http' import type { InspectStVO, InspectRecordVO } from './inspect.d' type ID = number | string /** * 点检汇总列表 */ @@ -9,6 +9,22 @@ } /** * 根据id查询汇总 * @param id */ export const getInspSt = (id: ID) => { return http.get<InspectStVO>(`/eims/inspectSt/${id}`) } /** * 根据id查询汇总 * @param stId */ export const getInspStByStId = (stId: string) => { return http.get<InspectStVO>(`/eims/inspectSt/info/${stId}`) } /** * 点检汇总列表下点检记录列表 */ export const getInspStRecordList = (params: any) => {