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
|
});
|
}
|