From 72085226bc9f82a9129b8fbcd17fab1edf9ef270 Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期五, 05 一月 2024 15:08:19 +0800 Subject: [PATCH] 1. 修复飞行巡检模块中有效率异常详情弹出框无法正常显示的bug; 2.优化各异常类型的折线图配置项生成逻辑; --- src/views/exception/components/DustLineChart.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/exception/components/DustLineChart.vue b/src/views/exception/components/DustLineChart.vue index 66f55fd..6db079b 100644 --- a/src/views/exception/components/DustLineChart.vue +++ b/src/views/exception/components/DustLineChart.vue @@ -33,10 +33,10 @@ window.addEventListener('resize', this.resizeChart) }, watch: { - option() { + option(nV) { // this.chart.clear // 涓嶄笌涔嬪墠鐨刼ption杩涜鍚堝苟 - this.chart.setOption(this.option, true) + this.chart.setOption(nV, true) } }, -- Gitblit v1.9.3