import request from '@/utils/request'; // 查询图表总数据 export function getPowerStationOverview() { return request({ url: '/ops/ginlong/api/getPowerStationOverview', method: 'get' }); } //能源收益 export function getStationMonthOverview(params: any) { return request({ url: '/ops/ginlong/api/getStationMonthOverview', method: 'get', params }); } //能源收益 export function getInverterListOverview(params: any) { return request({ url: '/ops/ginlong/api/getInverterListOverview', method: 'get', params }); } //警告 export function getAlarmListOverview(params?: any) { return request({ url: '/ops/ginlong/api/getAlarmListOverview', method: 'get', params }); }