电压暂降表及密度

This commit is contained in:
仲么了
2024-02-26 14:36:47 +08:00
parent 016442ff7f
commit 2bd18e0934
8 changed files with 1160 additions and 16 deletions

View File

@@ -7,4 +7,58 @@ export function getPlot(data: any) {
method: 'post',
data
})
}
//电压暂降表及密度 DISDIP 获取数据
export function IEC411(data) {
return request({
url: '/event-boot/monitor/IEC411',
method: 'post',
data
})
}
//电压暂降表及密度 IEC61000 获取数据
export function IEC28(data: any) {
return request({
url: '/event-boot/monitor/IEC28',
method: 'post',
data
})
}
//电压暂降表及密度 IEC61000 获取数据
export function eventDisdip(data: any) {
return request({
url: '/event-boot/monitor/eventDisdip',
method: 'post',
data
})
}
//电压暂降表及密度 暂降密度图 获取数据
export function getCoords(data: any) {
return request({
url: '/event-boot/monitor/getCoords',
method: 'post',
data
})
}
// 暂降分布统计 左 获取数据
export function getReasonTypeTime(data: any) {
return request({
url: '/event-boot/monitor/getReasonTypeTime',
method: 'post',
data
})
}
// 暂降分布统计 右 获取数据
export function getStatistic(data: any) {
return request({
url: '/event-boot/monitor/getStatistic',
method: 'post',
data
})
}