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