This commit is contained in:
xiaozhiyong
2026-06-11 08:40:18 +08:00
parent f006955a77
commit 565cd2921a
20 changed files with 3703 additions and 29 deletions

View File

@@ -0,0 +1,16 @@
import service from '@/utils/request'
// echarts图
export const getAlarmCategorySummary = (data) => {
return service({
url: '/device/getAlarmCategorySummary',
method: 'post',
data: data
})
}
export const getAlarmTrend = (data) => {
return service({
url: '/device/getAlarmTrend',
method: 'post',
data: data
})
}