This commit is contained in:
ljx
2025-09-12 22:38:25 +08:00
parent 5a2b17dea2
commit 010d3d8c3c

View File

@ -52,11 +52,11 @@ export const getScreenPeople = (projectId: number | string) => {
// 查询项目AI安全巡检 // 查询项目AI安全巡检
export const getScreenSafetyInspection = (projectId: number | string) => { export const getScreenSafetyInspection = (projectId: number | string) => {
return request({ return request({
url: '/project/big/screen/safetyInspection/', url: '/project/big/screen/safetyInspection/' + projectId,
method: 'get', method: 'get'
params: { // params: {
projectId // projectId
} // }
}); });
}; };