|
@@ -201,7 +201,7 @@
|
|
|
</tr>
|
|
|
<tr class="">
|
|
|
<td class="text gray">
|
|
|
- {{ wpId === "0" ? "减排二氧化碳" : "年等效科利用系数" }}
|
|
|
+ {{ wpId === "0" ? "减排二氧化碳" : "年等效可利用系数" }}
|
|
|
</td>
|
|
|
<td class="value green">
|
|
|
<!-- {{ wpId === "0" ? jczbmap.jpeyht : gxkmap.ndxkyss }} -->
|
|
@@ -869,8 +869,8 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
- historyWpId: '',
|
|
|
- historyPlanBtnName:'',
|
|
|
+ historyWpId: "",
|
|
|
+ historyPlanBtnName: "",
|
|
|
timmer: null, // 计时器
|
|
|
timmer2: null,
|
|
|
timmer3: null,
|
|
@@ -1023,9 +1023,9 @@ export default {
|
|
|
success(res) {
|
|
|
that.powerData = [
|
|
|
{
|
|
|
- title: "日照强度",
|
|
|
+ title: that.wpId === '-2' ? "日照强度" : "风速",
|
|
|
value: res.data.jczbmap.ssfs,
|
|
|
- dialogTitle: "日照详情",
|
|
|
+ dialogTitle: that.wpId === '-2' ? "日照强度详情" : "风速详情",
|
|
|
subUrl: "genreset/findGLDetail",
|
|
|
targetName: "ssfs",
|
|
|
dialogType: "powerLineChart",
|
|
@@ -1190,7 +1190,7 @@ export default {
|
|
|
value: [],
|
|
|
},
|
|
|
{
|
|
|
- title: "平均风速",
|
|
|
+ title: that.wpId === '-2' ? "日照强度" : "平均风速",
|
|
|
smooth: true,
|
|
|
value: [],
|
|
|
},
|
|
@@ -1227,26 +1227,68 @@ export default {
|
|
|
|
|
|
// 点击地图展示类型
|
|
|
changeShowType(wpId, planBtnName) {
|
|
|
- this.wpName = planBtnName?planBtnName:this.wpName;
|
|
|
- this.planBtnName = planBtnName?planBtnName:this.planBtnName;
|
|
|
+ if (
|
|
|
+ planBtnName === "电站" ||
|
|
|
+ planBtnName.indexOf("马场湖") !== -1 ||
|
|
|
+ planBtnName.indexOf("宣和") !== -1 ||
|
|
|
+ planBtnName.indexOf("大武口") !== -1 ||
|
|
|
+ planBtnName.indexOf("平罗") !== -1 ||
|
|
|
+ planBtnName.indexOf("海子井") !== -1
|
|
|
+ ) {
|
|
|
+ this.PowertrendYAxises = [
|
|
|
+ {
|
|
|
+ name: "功率",
|
|
|
+ min: 0,
|
|
|
+ max: null,
|
|
|
+ unit: "(万kWh)",
|
|
|
+ position: "left",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "日照",
|
|
|
+ min: 0,
|
|
|
+ max: 25,
|
|
|
+ unit: "(W/㎡)",
|
|
|
+ position: "right",
|
|
|
+ },
|
|
|
+ ];
|
|
|
+ } else {
|
|
|
+ this.PowertrendYAxises = [
|
|
|
+ {
|
|
|
+ name: "功率",
|
|
|
+ min: 0,
|
|
|
+ max: null,
|
|
|
+ unit: "(万kWh)",
|
|
|
+ position: "left",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "风速",
|
|
|
+ min: 0,
|
|
|
+ max: 25,
|
|
|
+ unit: "(m/s)",
|
|
|
+ position: "right",
|
|
|
+ },
|
|
|
+ ];
|
|
|
+ }
|
|
|
+ this.wpName = planBtnName ? planBtnName : this.wpName;
|
|
|
+ this.planBtnName = planBtnName ? planBtnName : this.planBtnName;
|
|
|
this.jczbmap = {};
|
|
|
clearInterval(this.timmer);
|
|
|
this.timmer = null;
|
|
|
- this.wpId = wpId?wpId:this.wpId;
|
|
|
-
|
|
|
+ this.wpId = wpId ? wpId : this.wpId;
|
|
|
+
|
|
|
this.requestData(false);
|
|
|
this.getCharts();
|
|
|
this.timmer = setInterval(() => {
|
|
|
this.requestData(false);
|
|
|
}, this.$store.state.websocketTimeSec);
|
|
|
},
|
|
|
- changeShowTypes(wpId,planBtnName){
|
|
|
- this.historyWpId = wpId
|
|
|
- this.historyPlanBtnName = planBtnName
|
|
|
- this.changeShowType(wpId,planBtnName);
|
|
|
+ changeShowTypes(wpId, planBtnName) {
|
|
|
+ this.historyWpId = wpId;
|
|
|
+ this.historyPlanBtnName = planBtnName;
|
|
|
+ this.changeShowType(wpId, planBtnName);
|
|
|
},
|
|
|
- changeShowBackType(){
|
|
|
- this.changeShowType(this.historyWpId,this.historyPlanBtnName);
|
|
|
+ changeShowBackType() {
|
|
|
+ this.changeShowType(this.historyWpId, this.historyPlanBtnName);
|
|
|
},
|
|
|
// 打开弹窗
|
|
|
openDialog(dialogTitle, subUrl, targetName, dialogType) {
|
|
@@ -1338,9 +1380,10 @@ export default {
|
|
|
this.dialogTitle = res.dialogTitle;
|
|
|
this.dialogType = res.dialogType;
|
|
|
this.doneLineChartData = res.data;
|
|
|
- this.doneLineChartData.units[0] = this.doneLineChartData.units[0]?this.doneLineChartData.units[0]:'(万KWh)';
|
|
|
+ this.doneLineChartData.units[0] = this.doneLineChartData.units[0]
|
|
|
+ ? this.doneLineChartData.units[0]
|
|
|
+ : "(万KWh)";
|
|
|
this.dialogShow = true;
|
|
|
- console.log(this.doneLineChartData)
|
|
|
},
|
|
|
|
|
|
// 地图进入事件
|