联调承载能力评估

This commit is contained in:
GGJ
2024-04-02 16:43:18 +08:00
parent fe60893e89
commit 60462b0086
24 changed files with 674 additions and 422 deletions

View File

@@ -174,4 +174,12 @@ export function checkPowerQuality(data) {
data
})
}
// 上传文件
export function uploadFile(data) {
return createAxios({
url: '/process-boot/electricityQuality/uploadFile',
method: 'POST',
data
})
}

View File

@@ -0,0 +1,9 @@
import createAxios from '@/utils/request'
export function exportModel(data: any) {
return createAxios({
url: '/harmonic-boot/exportmodel/exportModel',
method: 'post',
data: data
})
}