energyReport.js 573 B

12345678910111213141516171819202122232425262728293031
  1. import request from '@/utils/request'
  2. //用能月报分析
  3. export function monthlyReport2(params) {
  4. return request({
  5. url: '/htAnalogData/monthlyReport',
  6. method: 'GET',
  7. params,
  8. })
  9. }
  10. //用能月报设备请求
  11. export function deviceBoxList(params) {
  12. return request({
  13. url: '/device/deviceBoxList',
  14. method: 'GET',
  15. params,
  16. })
  17. }
  18. //表格-导出
  19. export function monthlyReportExport(params) {
  20. return request({
  21. url: '/htAnalogData/monthlyReportExport',
  22. method: 'GET',
  23. params,
  24. })
  25. }