车间能级提升-智能设备管理系统
zhuguifei
2025-05-13 14681dfe7052cb76eefcc0c17d0a0d708e1ac9dd
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) => {