liriming
2025-03-03 8bb7160c9c4fd7ce5893ee673647b13cc35410ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import request from '@/config/axios'
 
export interface DaPointChartReqVO {
  pointNos?: [],
  start?: Date,
  end?: Date,
}
 
export interface ApiPointPageReqVO extends PageParam {
  pointNo?: string
}
 
// 查询chart列表
export const getPointDaChart = (data: DaPointChartReqVO) => {
  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
export const exportDaPointValue = (params) => {
  return request.download({ url: '/data/da/point/exportValue', params })
}