事件分析

This commit is contained in:
仲么了
2024-02-27 11:17:16 +08:00
parent ed90f125be
commit 92000b039f
5 changed files with 103 additions and 114 deletions

View File

@@ -0,0 +1,20 @@
import request from '@/utils/request'
export function downloadWaveFile(data: any) {
return request({
url: '/event-boot/transient/downloadWaveFile',
method: 'post',
data: data.lineId,
responseType: 'blob'
})
}
// 事件分析 shushiboxi 获取数据
export function getMonitorEventAnalyseWave(data:any) {
return request({
url: "/event-boot/transient/getTransientAnalyseWave",
method: "post",
data
});
}