大屏
This commit is contained in:
33
src/api/large/index.ts
Normal file
33
src/api/large/index.ts
Normal file
@ -0,0 +1,33 @@
|
||||
import request from '@/utils/request';
|
||||
|
||||
// 查询图表总数据
|
||||
export function getPowerStationOverview() {
|
||||
return request({
|
||||
url: '/ginlong/api/getPowerStationOverview',
|
||||
method: 'get'
|
||||
});
|
||||
}
|
||||
//能源收益
|
||||
export function getStationMonthOverview(params: any) {
|
||||
return request({
|
||||
url: '/ginlong/api/getStationMonthOverview',
|
||||
method: 'get',
|
||||
params
|
||||
});
|
||||
}
|
||||
//能源收益
|
||||
export function getInverterListOverview(params: any) {
|
||||
return request({
|
||||
url: '/ginlong/api/getInverterListOverview',
|
||||
method: 'get',
|
||||
params
|
||||
});
|
||||
}
|
||||
//警告
|
||||
export function getAlarmListOverview(params?: any) {
|
||||
return request({
|
||||
url: '/ginlong/api/getAlarmListOverview',
|
||||
method: 'get',
|
||||
params
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user