|
@@ -167,38 +167,27 @@
|
|
|
},
|
|
|
],
|
|
|
Powersend: [],
|
|
|
+ timmer: null, // 定时器开关
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
this.getGeneratingcapacity()
|
|
|
+ this.timmer = setInterval(() => {
|
|
|
+ this.getGeneratingcapacity();
|
|
|
+ }, 10000);
|
|
|
+ },
|
|
|
+ unmounted() {
|
|
|
+ clearInterval(this.timmer);
|
|
|
+ this.timmer = null;
|
|
|
},
|
|
|
methods: {
|
|
|
selectTab(index, item) {
|
|
|
console.log("ind===>>>", index)
|
|
|
this.activeIndex = index;
|
|
|
+ this.changeRightData()
|
|
|
},
|
|
|
- //获取发电量和主要经济指标同期对比
|
|
|
- getGeneratingcapacity() {
|
|
|
+ changeRightData() {
|
|
|
let that = this
|
|
|
- generatingcapacity().then(res => {
|
|
|
- if (res.data) {
|
|
|
- if (res.data.fdl?.length>0) {
|
|
|
- res.data.fdl.forEach(it => {
|
|
|
- dataJson.data.fdl.forEach(iv =>{
|
|
|
- if (it.name === iv.name) {
|
|
|
- iv.bfb = it.bfb === 0 ? 1 : it.bfb
|
|
|
- iv.total = it.total === 0 ? 1 : it.total
|
|
|
- iv.value = it.value === 0 ? 0 : it.value
|
|
|
- }
|
|
|
- })
|
|
|
- })
|
|
|
- that.ForecastPower = dataJson.data.fdl
|
|
|
- }
|
|
|
- that.zbtqdb = res.data.zbtqdb
|
|
|
- }
|
|
|
- }).catch(e => {
|
|
|
- that.zbtqdb = dataJson.data.zbtqdb
|
|
|
- })
|
|
|
homeright({
|
|
|
periodType: this.activeIndex === 0 ? "year" : this.activeIndex === 1 ? "month" : "week"
|
|
|
}).then(res =>{
|
|
@@ -228,6 +217,29 @@
|
|
|
},
|
|
|
]
|
|
|
})
|
|
|
+ },
|
|
|
+ //获取发电量和主要经济指标同期对比
|
|
|
+ getGeneratingcapacity() {
|
|
|
+ let that = this
|
|
|
+ generatingcapacity().then(res => {
|
|
|
+ if (res.data) {
|
|
|
+ if (res.data.fdl?.length>0) {
|
|
|
+ res.data.fdl.forEach(it => {
|
|
|
+ dataJson.data.fdl.forEach(iv =>{
|
|
|
+ if (it.name === iv.name) {
|
|
|
+ iv.bfb = it.bfb === 0 ? 1 : it.bfb
|
|
|
+ iv.total = it.total === 0 ? 1 : it.total
|
|
|
+ iv.value = it.value === 0 ? 0 : it.value
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ that.ForecastPower = dataJson.data.fdl
|
|
|
+ }
|
|
|
+ that.zbtqdb = res.data.zbtqdb
|
|
|
+ }
|
|
|
+ }).catch(e => {
|
|
|
+ that.zbtqdb = dataJson.data.zbtqdb
|
|
|
+ })
|
|
|
homemiddle().then(res =>{
|
|
|
if (res.data) {
|
|
|
that.planData = res.data.planData
|
|
@@ -241,6 +253,7 @@
|
|
|
that.Powersend = dataJson.data.Powersend
|
|
|
that.Powerloss = dataJson.data.Powerloss
|
|
|
})
|
|
|
+ this.changeRightData()
|
|
|
},
|
|
|
}
|
|
|
};
|