瀏覽代碼

PR分析增加图例,发电量分析增加判空逻辑

baiyanting 1 年之前
父節點
當前提交
7ba82505d3

+ 6 - 12
src/views/economicsOperation/photovoltaicAnalyse/prAnalyse/components/barCharts.vue

@@ -66,15 +66,14 @@ export default {
         },
         },
         legend: {
         legend: {
           show: true,
           show: true,
-          data: ["PR"],
-          right: 0,
+          right: 20,
           icon: "ract",
           icon: "ract",
-          itemWidth: 4,
-          itemHeight: 4,
-          inactiveColor: "#999999",
+          itemWidth: 8,
+          itemHeight: 8,
+          inactiveColor: "#B3BDC0",
           padding: [10, 0],
           padding: [10, 0],
           textStyle: {
           textStyle: {
-            color: "#999999",
+            color: "#B3BDC0",
             fontSize: 12,
             fontSize: 12,
           },
           },
         },
         },
@@ -154,7 +153,7 @@ export default {
       };
       };
       if (this.bardata && this.bardata.data && this.bardata.data.length) {
       if (this.bardata && this.bardata.data && this.bardata.data.length) {
         option.series.push({
         option.series.push({
-          name: "PR",
+          name: "本期PR",
           type: "bar",
           type: "bar",
           barWidth: 10,
           barWidth: 10,
           barMinHeight: 2,
           barMinHeight: 2,
@@ -212,11 +211,6 @@ export default {
         this.initChart();
         this.initChart();
       },
       },
     },
     },
-    // "$store.state.isFixed": {
-    //   handler() {
-    //     this.resize();
-    //   },
-    // },
   },
   },
 };
 };
 </script>
 </script>

+ 1 - 1
src/views/economicsOperation/stationAnalyse/electricAnalyse/index.vue

@@ -212,7 +212,7 @@ export default {
         ({ data: res, code }) => {
         ({ data: res, code }) => {
           if (res.code == 200) {
           if (res.code == 200) {
             this.stationOptions = res.data;
             this.stationOptions = res.data;
-            this.station = this.stationOptions[0].id;
+            this.station = this.stationOptions[0]?.id || "";
             this.getDatas();
             this.getDatas();
           }
           }
         }
         }