This commit is contained in:
ljx
2025-09-28 17:19:42 +08:00
parent 033c6bcbfa
commit 744b7a6d97
30 changed files with 32 additions and 35 deletions

View File

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