he wei
5 天以前 3c3576d5792bfabcef84979757ee344712e71cd3
src/api/statistic.js
@@ -100,6 +100,17 @@
}
/**
 * 蓄电池组对比分析界面(不同品牌同一时间)(1.2.17)
 */
export function getBattCompare17(data) {
  return request({
    url: "statistic/getBattCompare17Statistic",
    method: "POST",
    data
  });
}
/**
 * 单节数最统计导出
 */
export function battMonExport(data) {
@@ -110,4 +121,73 @@
    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
  });
}