联调终端运行评价

This commit is contained in:
GGJ
2025-05-15 14:52:02 +08:00
parent 325aa7d56e
commit 67718efe57
22 changed files with 672 additions and 330 deletions

View File

@@ -15,3 +15,11 @@ export function ledgerChangePush() {
method: 'post'
})
}
// 台账变更推送
export function getPushResult(data: any) {
return request({
url: '/device-boot/device/getPushResult',
method: 'post',
params: data
})
}

View File

@@ -61,3 +61,12 @@ export function getTransientValue(data: any) {
data
})
}
// 周报导出
export function getExport(data: any) {
return createAxios({
url: '/event-boot/report/getExport',
method: 'post',
data,
responseType: 'blob'
})
}