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