From 70e7daff6967431f860efe4d59b95e9f7221c764 Mon Sep 17 00:00:00 2001 From: 潘志宝 <979469083@qq.com> Date: 星期二, 25 二月 2025 15:19:07 +0800 Subject: [PATCH] Merge branch 'master' of http://dlindusit.com:53929/r/iailab-plat-ui-vue3 --- src/api/data/da/point/daPointChart.ts | 16 +++++++++++++++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/src/api/data/da/point/daPointChart.ts b/src/api/data/da/point/daPointChart.ts index 658a7ec..bffedaa 100644 --- a/src/api/data/da/point/daPointChart.ts +++ b/src/api/data/da/point/daPointChart.ts @@ -6,9 +6,23 @@ end?: Date, } +export interface ApiPointPageReqVO extends PageParam { + pointNo?: string +} + // 查询chart列表 export const getPointDaChart = (data: DaPointChartReqVO) => { - return request.post({ url: '/data/api/data/point/history', data }) + return request.post({ url: '/data/api/query-points/chart', data }) +} + +// 查询多个测点当前值 +export const getPointsRealValue = (data: []) => { + return request.post({ url: '/data/api/query-points/real-value', data }) +} + +// 查询计算点当前值 +export const getMathPointCurrentValue = (data: ApiPointPageReqVO) => { + return request.post({ url: '/data/api/query-math-point/current-value', data }) } //导出DaPointValue -- Gitblit v1.9.3