波形解析相关

This commit is contained in:
2026-04-16 08:15:46 +08:00
parent 5596d57409
commit 9b43f45808
5 changed files with 1219 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import http from '@/api'
import type { Waveform } from './interface'
export const parseComtradeApi = (params: Waveform.ParseComtradeParams) => {
const formData = new FormData()
formData.append('cfgFile', params.cfgFile)
formData.append('datFile', params.datFile)
return http.post<Waveform.WaveComtradeResultVO>(`/wave/parseComtrade`, formData, {
headers: { 'Content-Type': 'multipart/form-data' }
})
}