You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
356 B
18 lines
356 B
import request from "@/utils/request"; |
|
|
|
// 查询报警记录列表 |
|
export function alarmRecordList(query) { |
|
return request({ |
|
url: "/alarm/ard/list", |
|
method: "get", |
|
params: query, |
|
}); |
|
} |
|
|
|
// 根据id查询报警记录信息 |
|
export function getAlarmRecord(ardId) { |
|
return request({ |
|
url: "/alarm/ard/" + ardId, |
|
method: "get", |
|
}); |
|
} |