diff --git a/src/views/Management-operation/components/mainnetwork/statistical/Qualitystatistics.vue b/src/views/Management-operation/components/mainnetwork/statistical/Qualitystatistics.vue index f07171b..8b9994e 100644 --- a/src/views/Management-operation/components/mainnetwork/statistical/Qualitystatistics.vue +++ b/src/views/Management-operation/components/mainnetwork/statistical/Qualitystatistics.vue @@ -88,7 +88,7 @@ export default { { prop: 'effectiveAccessRate', label: '有效接入率(%)' }, { prop: 'dataIntegrityRate', label: '数据完整率(%)' }, { prop: 'indexIntegrityRate', label: '指标完整率(%)' }, - { prop: 'isUnusual', label: '数据是否异常' } + { prop: 'isUnusual', label: '异常监测点数' } ], qualitystatisticsData: [], device: '', @@ -154,13 +154,13 @@ export default { //判断数据是否异常 cellStyle(row) { console.log(row) - if (row.columnIndex == 6) { - if (row.row.isUnusual == 0) { - row.row.isUnusual = '正常 ' - } else if (row.row.isUnusual == 1) { - row.row.isUnusual = '异常' - } - } + // if (row.columnIndex == 6) { + // if (row.row.isUnusual == 0) { + // row.row.isUnusual = '正常 ' + // } else if (row.row.isUnusual == 1) { + // row.row.isUnusual = '异常' + // } + // } }, //导出 exportEvent() {