This commit is contained in:
2025-09-10 11:42:24 +08:00
parent 71ba51772d
commit 38dcbe7f7a
9 changed files with 777 additions and 247 deletions

View File

@ -22,9 +22,12 @@ export const listSafetyWeeklyReport = (query?: SafetyWeeklyReportQuery): AxiosPr
* @param id
*/
export const getSafetyWeeklyReport = (id: string | number): AxiosPromise<SafetyWeeklyReportVO> => {
return request({
url: '/safety/safetyWeeklyReport/' + id,
method: 'get'
return requestGo({
url: '/zm/api/v1/system/busWeeklySecurityReport/get',
method: 'get',
params: {
id
}
});
};