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
32
33
| import request from '@/utils/request'
| // 首页-全厂能耗统计/全厂能耗占比-列表
| export function listEnergyConsumptionSummation(query) {
| return request({
| url: '/homepage/energyConsumptionSummation',
| method: 'get',
| params: query
| })
| }
| // 首页-全厂能耗趋势-列表
| export function listEnergyConsumptionTrend(query) {
| return request({
| url: '/homepage/energyConsumptionTrend',
| method: 'get',
| params: query
| })
| }
| // 首页-科室能耗排名TOP-列表
| export function listEnergyConsumptionRanking(query) {
| return request({
| url: '/homepage/energyConsumptionRanking',
| method: 'get',
| params: query
| })
| }
| // 首页-尖峰平谷占比-列表
| export function listPeakValley(query) {
| return request({
| url: '/homepage/peakValley',
| method: 'get',
| params: query
| })
| }
|
|