联调 有功功率趋势分析

This commit is contained in:
GGJ
2024-08-29 15:58:30 +08:00
parent 1fa628044f
commit 3ac62fc98c
4 changed files with 251 additions and 149 deletions

View File

@@ -24,3 +24,21 @@ export function getTargetByTime(data: any) {
data: data
})
}
// 导出报告参数
export function exportExcelListTemplate(data: any) {
return request({
url: '/harmonic-boot/powerStatistics/exportExcelListTemplate',
method: 'POST',
data: data,
responseType: 'blob'
})
}
// 导出区间数据
export function exportExcelRangTemplate(data: any) {
return request({
url: '/harmonic-boot/powerStatistics/exportExcelRangTemplate',
method: 'POST',
data: data,
responseType: 'blob'
})
}