yijianjun 1 månad sedan
förälder
incheckning
d0ef4fb8ef

+ 9 - 9
src/views/modules/load-forecasting-v2/components/forecasting-detail.vue

@@ -63,11 +63,11 @@
               {{ scope.row[`${key}_loadRate`] ? scope.row[`${key}_loadRate`] + '%' : '---' }}
             </template>
           </el-table-column>
-          <el-table-column :prop="`${key}_confidence`" label="置信度">
+          <!-- <el-table-column :prop="`${key}_confidence`" label="置信度">
             <template slot-scope="scope">
               {{ scope.row[`${key}_confidence`] ? scope.row[`${key}_confidence`] + '%' : '---' }}
             </template>
-          </el-table-column>
+          </el-table-column> -->
         </el-table-column>
       </el-table>
     </div>
@@ -128,7 +128,7 @@ export default {
         var accumulatedrainfallChart1 = echarts.init(document.getElementById('accumulatedrainfallChart1'), 'carp');
         accumulatedrainfallChart1.setOption({
           legend: {
-            data: ['最大负荷', '最大负荷率', '置信度'],
+            data: ['最大负荷', '最大负荷率'],
           },
           grid: { bottom: 20 },
           color: ['#0977fd'],
@@ -166,12 +166,12 @@ export default {
               type: 'line',
               yAxisIndex: 1,
             },
-            {
-              name: '置信度',
-              data: this.columns.map(key => row[`${key}_confidence`]),
-              type: 'line',
-              yAxisIndex: 1,
-            },
+            // {
+            //   name: '置信度',
+            //   data: this.columns.map(key => row[`${key}_confidence`]),
+            //   type: 'line',
+            //   yAxisIndex: 1,
+            // },
           ],
         });
       });