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
34
| import request from "@/utils/request";
|
| /**
| * 站点信息统计
| */
| export function getStationStatistic(data) {
| return request({
| url: "statistic/getStationStatistic",
| method: "POST",
| data
| });
| }
|
| /**
| * 蓄电池核容信息统计
| */
| export function getBattTinfStatistic(data) {
| return request({
| url: "statistic/getBattTinfStatistic",
| method: "POST",
| data
| });
| }
|
| /**
| * 设备工作状态统计
| */
| export function getDeviceStateStatistic(data) {
| return request({
| url: "statistic/getDeviceStateStatistic",
| method: "POST",
| data
| });
| }
|
|