提交 | 用户 | 时间 | ||
031c25 | 1 | import request from '@/config/axios' |
D | 2 | |
3 | export interface DaPointChartReqVO { | |
4 | pointNos?: [], | |
5 | start?: Date, | |
6 | end?: Date, | |
7 | } | |
8 | ||
9 | // 查询chart列表 | |
10 | export const getPointDaChart = (data: DaPointChartReqVO) => { | |
c4b4d2 | 11 | return request.post({ url: '/data/api/query-points/chart', data }) |
031c25 | 12 | } |
D | 13 | |
14 | //导出DaPointValue | |
15 | export const exportDaPointValue = (params) => { | |
16 | return request.download({ url: '/data/da/point/exportValue', params }) | |
17 | } |