初次提交
This commit is contained in:
98
src/api/screen/index.js
Normal file
98
src/api/screen/index.js
Normal file
@ -0,0 +1,98 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 获取系统转换率
|
||||
export function GetEfficiencyDate(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/efficiencyDate',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取电站区域分布
|
||||
export function GetRegionalDistribution(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/regionalDistribution',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 电站收益率排名
|
||||
export function GetRegionalIncomeDate(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/incomeDate',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取电站信息
|
||||
export function GetStationInfo(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/stationInfo',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 日充日放对比图
|
||||
export function GetChargeDailyChart(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/chargeDailyChart',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 总览
|
||||
export function GetOverviewData(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/overviewData',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 天气
|
||||
export function GetNewWeather(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/newWeather',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function GetCapacity(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/getCapacity',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function GetIncomeCurve(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/getIncomeCurve',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
export function GetEnergySaving(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/getEnergySaving',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 新加坡柴发
|
||||
export function GetElecData(data) {
|
||||
return request({
|
||||
url: '/business/singapore/getElecData',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
96
src/api/screen/zzScreen.js
Normal file
96
src/api/screen/zzScreen.js
Normal file
@ -0,0 +1,96 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 中自根据电站Id查询所属组织机构返回
|
||||
export function GetDeptIdByStationId(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/getByStationId',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 获取系统转换率
|
||||
export function GetEfficiencyDate(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/getZhongZiEfficiencyDate',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取电站区域分布
|
||||
export function GetRegionalDistribution(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/getZhongZiDistribution',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 电站收益率排名
|
||||
export function GetRegionalIncomeDate(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/getZhongZiIncomeList',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 获取电站信息
|
||||
export function GetStationInfo(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/getZhongZiStationInfo',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 日充日放对比图
|
||||
export function GetChargeDailyChart(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/getZhongZiChargeDailyChart',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 总览
|
||||
export function GetOverviewData(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/getZhongZiOverviewData',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 天气
|
||||
export function GetNewWeather(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/newWeather',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 装机容量
|
||||
export function GetCapacity(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/getZhongZiCapacity',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 收益曲线
|
||||
export function GetIncomeCurve(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/getZhongZiIncomeCurve',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 节能减排
|
||||
export function GetEnergySaving(data) {
|
||||
return request({
|
||||
url: '/business/IargeScreenShow/getZhongZiEnergySaving',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user