This commit is contained in:
xiaozhiyong
2026-06-11 17:09:20 +08:00
parent abe40c5ae9
commit 082b766349
15 changed files with 854 additions and 391 deletions

View File

@@ -31,7 +31,7 @@ export const getDeviceDetailsListByPage = (data) => {
data: data
})
}
// 报警
// 报警列表
export const getAlarmRecordListByPage = (data) => {
return service({
url: '/device/getAlarmRecordListByPage',

View File

@@ -0,0 +1,26 @@
import service from '@/utils/request'
// 项目列表
export const getProjectList = (data) => {
return service({
url: '/device/getProjectList',
method: 'post',
data: data
})
}
// 警情情况
export const getAlarmSituationSummary = (data) => {
return service({
url: '/device/getAlarmSituationSummary',
method: 'post',
data: data
})
}
// 折线图
export const getAlarmTrendProcessingRate = (data) => {
return service({
url: '/device/getAlarmTrendProcessingRate',
method: 'post',
data: data
})
}