|
@@ -187,7 +187,7 @@ const leaderboardLoadfactortoplist = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/leaderboard/loadfactortoplist`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
// 总发电效率排行
|
|
@@ -202,32 +202,32 @@ const leaderboardQuerywarningStatistical = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/leaderboard/querywarningStatistical`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
// 专题分析
|
|
|
-const specificMaincenterlist = (data) => {
|
|
|
+const specificMaincenterlist = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/specific/maincenterlist?month=${data.month}`,
|
|
|
method: "get",
|
|
|
});
|
|
|
};
|
|
|
-const specificMaintoplist = (data) => {
|
|
|
+const specificMaintoplist = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/specific/maintoplist?month=${data.month}`,
|
|
|
method: "get",
|
|
|
});
|
|
|
};
|
|
|
// 风能利用率
|
|
|
-const specificFnlylList = (data) => {
|
|
|
+const specificFnlylList = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/specific/fnlylList?year=${data.year}`,
|
|
|
method: "get",
|
|
|
});
|
|
|
};
|
|
|
|
|
|
- // 故障损失率
|
|
|
- const specificGzsslList = (data) => {
|
|
|
+// 故障损失率
|
|
|
+const specificGzsslList = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/specific/gzsslList?year=${data.year}`,
|
|
|
method: "get",
|
|
@@ -235,7 +235,7 @@ const specificFnlylList = (data) => {
|
|
|
};
|
|
|
|
|
|
// 限电损失率
|
|
|
-const specificXdsslList = (data) => {
|
|
|
+const specificXdsslList = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/specific/xdsslList?year=${data.year}`,
|
|
|
method: "get",
|
|
@@ -243,7 +243,7 @@ const specificXdsslList = (data) => {
|
|
|
};
|
|
|
|
|
|
// 性能损失率
|
|
|
-const specificXnsslList = (data) => {
|
|
|
+const specificXnsslList = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/specific/xnsslList?year=${data.year}`,
|
|
|
method: "get",
|
|
@@ -251,228 +251,250 @@ const specificXnsslList = (data) => {
|
|
|
};
|
|
|
|
|
|
// 受累损失率
|
|
|
-const specificSlsslList = (data) => {
|
|
|
+const specificSlsslList = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/specific/slsslList?year=${data.year}`,
|
|
|
method: "get",
|
|
|
});
|
|
|
};
|
|
|
// mtbf
|
|
|
-const specificMtbfList = (data) => {
|
|
|
+const specificMtbfList = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/specific/mtbfList?year=${data.year}`,
|
|
|
method: "get",
|
|
|
});
|
|
|
};
|
|
|
|
|
|
- // mttr
|
|
|
- const specificMttrList = (data) => {
|
|
|
+// mttr
|
|
|
+const specificMttrList = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/specific/mttrList?year=${data.year}`,
|
|
|
method: "get",
|
|
|
});
|
|
|
};
|
|
|
// 复位及时率
|
|
|
-const specificFwjslList = (data) => {
|
|
|
+const specificFwjslList = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/specific/fwjslList?year=${data.year}`,
|
|
|
method: "get",
|
|
|
});
|
|
|
};
|
|
|
// 状态转换率
|
|
|
-const specificZtzhlList = (data) => {
|
|
|
+const specificZtzhlList = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/specific/ztzhlList?year=${data.year}`,
|
|
|
method: "get",
|
|
|
});
|
|
|
};
|
|
|
|
|
|
- // 消缺及时率
|
|
|
- const specificXqjslList = (data) => {
|
|
|
+// 消缺及时率
|
|
|
+const specificXqjslList = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/specific/xqjslList?year=${data.year}`,
|
|
|
method: "get",
|
|
|
});
|
|
|
};
|
|
|
// 发电量分析
|
|
|
-const specificFdlList = (data) => {
|
|
|
+const specificFdlList = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/specific/fdlList?year=${data.year}`,
|
|
|
method: "get",
|
|
|
});
|
|
|
};
|
|
|
// 综合场用电量
|
|
|
-const specificZhcydlList = (data) => {
|
|
|
+const specificZhcydlList = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/specific/zhcydlList?year=${data.year}`,
|
|
|
method: "get",
|
|
|
});
|
|
|
};
|
|
|
// 单机信息总览
|
|
|
-const powercompareWindfarmAjax = (data) => {
|
|
|
+const powercompareWindfarmAjax = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/powercompare/windfarmAjax`,
|
|
|
method: "get",
|
|
|
});
|
|
|
};
|
|
|
-const goodnessWindturbinegoodness = (data) => {
|
|
|
+const goodnessWindturbinegoodness = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/goodness/windturbinegoodness`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
|
|
|
-const powercompareWindturbineAjax = (data) => {
|
|
|
+const powercompareWindturbineAjax = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/powercompare/windturbineAjax?wpId=${data.wpId}`,
|
|
|
method: "get",
|
|
|
});
|
|
|
};
|
|
|
|
|
|
-const goodnessGoodhistorylist = (data) => {
|
|
|
+const goodnessGoodhistorylist = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/goodness/goodhistorylist`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
// 单机信息总览详情
|
|
|
|
|
|
-const goodnessFindWtRealPowerChar = (data) => {
|
|
|
+const goodnessFindWtRealPowerChar = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/goodness/findWtRealPowerChar`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
-const goodnessGetplotBands = (data) => {
|
|
|
+const goodnessGetplotBands = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/goodness/getplotBands`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
-const goodnessPlotBandAjax = (data) => {
|
|
|
+const goodnessPlotBandAjax = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/goodness/plotBandAjax`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
-const goodnessFindRealPowerCharBy24 = (data) => {
|
|
|
+const goodnessFindRealPowerCharBy24 = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/goodness/findRealPowerCharBy24`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
-const goodnessBjjllist = (data) => {
|
|
|
+const goodnessBjjllist = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/goodness/bjjllist`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
|
|
|
-const goodnessGzjllist = (data) => {
|
|
|
+const goodnessGzjllist = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/goodness/gzjllist`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
-const goodnessXdjllist = (data) => {
|
|
|
+const goodnessXdjllist = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/goodness/xdjllist`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
-const goodnessWadAjax = (data) => {
|
|
|
+const goodnessWadAjax = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/goodness/wadAjax`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
|
|
|
-const goodnessBphlist = (data) => {
|
|
|
+const goodnessBphlist = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/goodness/bjphlist`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
-const goodnessGlchat = (data) => {
|
|
|
+const goodnessGlchat = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/goodness/glchat`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
-const goodnessFjfzy = (data) => {
|
|
|
+const goodnessFjfzy = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/goodness/fjfzy`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
-const requestData1 = (data) => {
|
|
|
+const requestData1 = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/${data.subUrl}`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
//znzhfx.vue
|
|
|
-const singleanalysisSingleanalysisSub = (data) => {
|
|
|
+const singleanalysisSingleanalysisSub = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/singleanalysis/singleanalysisSub`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
-const singleanalysisSingleanalysisChart = (data) => {
|
|
|
+const singleanalysisSingleanalysisChart = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/singleanalysis/singleanalysisChart`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
// 单机月度分析
|
|
|
|
|
|
-const singleanalysisSingleanalysisMain = (data) => {
|
|
|
+const singleanalysisSingleanalysisMain = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/singleanalysis/singleanalysisMain`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
//电量分析 未绑定界面
|
|
|
|
|
|
|
|
|
//forecast-system.vue
|
|
|
-const powercompareWindfarmAllAjax2 = (data) => {
|
|
|
+const powercompareWindfarmAllAjax2 = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/powercompare/windfarmAllAjax`,
|
|
|
method: "get",
|
|
|
});
|
|
|
};
|
|
|
-const weatherWeatherInfo = (data) => {
|
|
|
+const weatherWeatherInfo = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/weather/weatherInfo?wpId=${data.wpId}`,
|
|
|
method: "get",
|
|
|
});
|
|
|
};
|
|
|
-const weatherWatherChart = (data) => {
|
|
|
+const weatherWatherChart = (data) => {
|
|
|
return request({
|
|
|
url: `/consumer/weather/weatherChart`,
|
|
|
method: "post",
|
|
|
- data:data
|
|
|
+ data: data
|
|
|
});
|
|
|
};
|
|
|
|
|
|
+// 报表管理 --统计分析
|
|
|
+
|
|
|
+const statisticAnalysis = (data) => {
|
|
|
+ return request({
|
|
|
+ url: `/consumer/analysisplus/list?beginDate=${data.beginDate}&endDate=${data.endDate}`,
|
|
|
+ method: "get",
|
|
|
+ });
|
|
|
+};
|
|
|
+// 报表管理 --统计分析-场站
|
|
|
+const analysisplusTjfxlist = (data) => {
|
|
|
+ return request({
|
|
|
+ url: `/consumer/analysisplus/tjfxlist?theday=${data.theday}&wpid=${data.wpid}&identity=${0}`,
|
|
|
+ method: "get",
|
|
|
+ });
|
|
|
+};
|
|
|
+// 报表管理 --统计分析-表底
|
|
|
+const analysisplusBdzlist = (data) => {
|
|
|
+ return request({
|
|
|
+ url: `/consumer/analysisplus/bdzlist?theday=${data.theday}&wpid=${data.wpid}`,
|
|
|
+ method: "get",
|
|
|
+ });
|
|
|
+};
|
|
|
export default {
|
|
|
benchmarking,
|
|
|
benchmarkingLineList,
|
|
@@ -538,5 +560,8 @@ export default {
|
|
|
singleanalysisSingleanalysisMain,
|
|
|
powercompareWindfarmAllAjax2,
|
|
|
weatherWeatherInfo,
|
|
|
- weatherWatherChart
|
|
|
+ weatherWatherChart,
|
|
|
+ statisticAnalysis,
|
|
|
+ analysisplusTjfxlist,
|
|
|
+ analysisplusBdzlist
|
|
|
}
|