deviceStatistics.js 416 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
import request from '@/utils/request'

// 查询设备监控列表
export function getDeviceStatisticsInfo(query) {
  return request({
    url: '/dataMonitoring/deviceStatistics/getDeviceStatisticsInfo',
    method: 'get',
    params: query
  })
}

// 导出设备监控
export function exportData(query) {
  return request({
    url: '/dataMonitoring/reportData/export',
    method: 'get',
    params: query
  })
}