监测点详情 趋势图数据

This commit is contained in:
stt
2025-11-13 08:49:44 +08:00
parent 384ea90acd
commit 078488a842
6 changed files with 1389 additions and 440 deletions

View File

@@ -24,4 +24,34 @@ export function cslineList(data: any) {
method: 'post',
data: data
})
}
}
// 监测点详情 趋势图数据
export function trendData(data: any) {
return request({
url: '/cs-device-boot/csGroup/trendData',
method: 'post',
data: data
})
}
// 每日越限占比统计
export function totalLimitStatisticsDetails(data: any) {
return request({
url: '/harmonic-boot/totalLimitStatistics/details',
method: 'post',
data: data
})
}
// 总体指标越限统计列表
export function totalLimitStatisticsList(data: any) {
return request({
url: '/harmonic-boot/totalLimitStatistics/list',
method: 'post',
data: data
})
}