Files
admin-govern/src/api/cs-harmonic-boot/datatrend.ts

23 lines
463 B
TypeScript
Raw Normal View History

2024-01-11 13:42:54 +08:00
import createAxios from '@/utils/request'
// 查询设备数据趋势
export function getDeviceDataTrend(data: any) {
return createAxios({
url: '/cs-harmonic-boot/datatrend/querydatatrend',
method: 'POST',
data
})
}
2024-01-15 20:29:12 +08:00
2024-01-16 16:31:11 +08:00
2025-01-03 12:45:54 +08:00
// 波形下载
export function getFileZip(params: any) {
return createAxios({
url: '/cs-harmonic-boot/event/getFileZip',
method: 'get',
params,
responseType: 'blob'
})
}