电压暂降地理信息图概览
This commit is contained in:
10
src/api/device-boot/device.ts
Normal file
10
src/api/device-boot/device.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 获取区域中断设备
|
||||
export function getAreaOffDev(data) {
|
||||
return request({
|
||||
url: "/device-boot/device/getAreaOffDev",
|
||||
method: "post",
|
||||
data
|
||||
});
|
||||
}
|
||||
@@ -8,3 +8,21 @@ export function getAreaLineInfo(data: any) {
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取区域未处理暂态事件
|
||||
export function getNoDealEvents(data: any) {
|
||||
return request({
|
||||
url: '/event-boot/areaInfo/getNoDealEvents',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取监测点下未处理的暂降事件
|
||||
export function getNoDealEventsByLineId(params: any) {
|
||||
return request({
|
||||
url: '/event-boot/areaInfo/getNoDealEventsByLineId',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user