ADD: 报告生成选择检测数据源并更新监测点结果。

This commit is contained in:
贾同学
2025-09-15 10:38:14 +08:00
parent b27615baaf
commit 09b54a29ab
3 changed files with 13 additions and 9 deletions

View File

@@ -2,4 +2,6 @@ import http from '@/api'
export const getMonitorResult = (devId: string) => http.post(`/result/getMonitorResult?devId=${devId}`)
export const getMonitorDataSourceResult = (monitorId: string) =>
http.get(`/result/getMonitorDataSourceResult?monitorId=${monitorId}`)
http.get(`/result/getMonitorDataSourceResult?monitorId=${monitorId}`)
export const updateMonitorResult = (data: any) => http.post('/result/updateMonitorResult', data)