Files
admin-sjzx/src/api/process-boot/reportForms.ts

19 lines
488 B
TypeScript
Raw Normal View History

2026-01-09 08:47:07 +08:00
import createAxios from '@/utils/request'
export function exportModel(data: any) {
return createAxios({
url: '/harmonic-boot/exportmodel/exportModel',
method: 'post',
data: data,
responseType: 'blob'
})
}
export function areaHarmonicReport(data: any) {
return createAxios({
url: '/harmonic-boot/areaHarmonicReport/areaHarmonicReport',
method: 'post',
data: data,
responseType: 'blob'
})
}