19 lines
744 B
TypeScript
19 lines
744 B
TypeScript
|
|
// AI预警接口API
|
||
|
|
import http from "@/api";
|
||
|
|
const BASEURL = import.meta.env.VITE_API_URL;
|
||
|
|
|
||
|
|
// 人员履职情况分析
|
||
|
|
// 整改人
|
||
|
|
export const getMemberJobStatusApi = (params: {}) => {
|
||
|
|
return http.post(BASEURL + `/xmgl/xzSecurityQualityInspectionRecord/statsByChangeId`, params, { headers: { noLoading: true } });
|
||
|
|
};
|
||
|
|
// 检查人
|
||
|
|
export const getInspectManStatusApi = (params: {}) => {
|
||
|
|
return http.post(BASEURL + `/xmgl/xzSecurityQualityInspectionRecord/statsByInspectMan`, params, { headers: { noLoading: true } });
|
||
|
|
};
|
||
|
|
// 按分包单位分析
|
||
|
|
export const getEnterpriseStatusApi = (params: {}) => {
|
||
|
|
return http.post(BASEURL + `/xmgl/xzSecurityQualityInspectionRecord/statsByEnterprise`, params, { headers: { noLoading: true } });
|
||
|
|
};
|
||
|
|
|