he wei
5 天以前 3c3576d5792bfabcef84979757ee344712e71cd3
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
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
  });
}
 
/**
 * 蓄电池组对比分析界面(不同品牌同一时间)(1.2.17)
 */
export function getBattCompare17(data) {
  return request({
    url: "statistic/getBattCompare17Statistic",
    method: "POST",
    data
  });
}
 
/**
 * 单节数最统计导出
 */
export function battMonExport(data) {
  return request({
    url: "export/exportBattTinfStatistic",
    method: "POST",
    fullRes: true,
    responseType: "blob",
    data
  });
}
 
 
// ===================2025-06-12=====================
 
/**
 * 本年度已放电数量统计
 */
export function getDischr5Statistic(data) {
  return request({
    url: 'statistic/getDischr5Statistic',
    method: 'POST',
    data
  });
}
 
/**
 * 本年度未放电数量统计
 */
export function getDischr6Statistic(data) {
  return request({
    url: 'statistic/getDischr6Statistic',
    method: 'POST',
    data
  });
}
 
 
/**
 * 本年度放电数量 性能 图表数据
 */
export function getDischr5Chart() {
  return request({
    url: 'statistic/getDischr5Chart',
    method: 'POST',
  });
}
 
/**
 * 电池组性能统计 1.2.8/ 1.2.9/ 1.2.10
 */
export function getPerformanceStatistic(data) {
  return request({
    url: 'statistic/getPerformanceStatistic',
    method: 'POST',
    data
  });
}
 
/**
 * 电池组电池性能统计 劣化 按照单体电压 内阻统计
 */
export function getPerVolAndRes9Statistic(data) {
  return request({
    url: 'statistic/getPerVolAndRes9Statistic',
    method: 'POST',
    data
  });
}
 
/**
 * 优良电源数量统计(1.2.7)
 */
export function getPwr7Statistic(data) {
  return request({
    url: 'statistic/getPwr7Statistic',
    method: 'POST',
    data
  });
}