whychdw
2025-06-06 d0f98ad8e1047e3161a458399ad3005404ed87b8
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
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
  });
}
 
/**
 * 蓄电池组信息统计
 */
export function getBattStatistic(data) {
  return request({
    url: "statistic/getBattStatistic",
    method: "POST",
    data
  });
}
 
/**
 * 设备信息统计
 */
export function getDeviceStatistic(data) {
  return request({
    url: "statistic/getDevStatistic",
    method: "POST",
    data
  });
}
 
/**
 * 单节数量统计
 */
export function getSingleStatistic(data) {
  return request({
    url: "statistic/getMonStatistic",
    method: "POST",
    data
  });
}
 
/**
 * 电源信息统计
 */
export function getPowerStatistic(data) {
  return request({
    url: "statistic/getPowerStatistic",
    method: "POST",
    data
  });
}
 
/**
 * 蓄电池组对比分析界面(同一品牌同一时间)(1.2.15)
 */
export function getBattCompare15(data) {
  return request({
    url: "statistic/getBattCompare15Statistic",
    method: "POST",
    data
  });
}
 
/**
 * 蓄电池组对比分析界面(不同品牌同一时间)(1.2.16)
 */
export function getBattCompare16(data) {
  return request({
    url: "statistic/getBattCompare16Statistic",
    method: "POST",
    data
  });
}
 
/**
 * 单节数最统计导出
 */
export function battMonExport(data) {
  return request({
    url: "export/exportBattTinfStatistic",
    method: "POST",
    fullRes: true,
    responseType: "blob",
    data
  });
}