This commit is contained in:
2025-01-15 13:35:15 +08:00
parent 19dbe38458
commit 0b03e6d44b
33 changed files with 4809 additions and 1234 deletions

View File

@@ -40,3 +40,20 @@ export function getProductAuto(data) {
data: data
})
}
// 班组自动报表分页
export function getTeamReportPage(query) {
return request({
url: '/monitoring/team-auto-report/page',
method: 'get',
params: query
})
}
// 班组自动报表分页详细
export function getTeamReportPageDet(id) {
return request({
url: '/monitoring/team-auto-report/pageDet?id=' + id,
method: 'get',
})
}