From 89d9445073b61b3de0b2bb46daffaa397cbb62f5 Mon Sep 17 00:00:00 2001 From: jongbowen <970029315@qq.com> Date: Mon, 15 May 2023 16:55:33 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=B8=85=E7=A9=BA=E5=9B=BE?= =?UTF-8?q?=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../examStatistics/echarts/echarts.component.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/examiner/statistic-analysis/examStatistics/echarts/echarts.component.ts b/src/app/examiner/statistic-analysis/examStatistics/echarts/echarts.component.ts index f5998ff..941f008 100644 --- a/src/app/examiner/statistic-analysis/examStatistics/echarts/echarts.component.ts +++ b/src/app/examiner/statistic-analysis/examStatistics/echarts/echarts.component.ts @@ -120,7 +120,7 @@ export class EchartsComponent implements OnInit { this.color = "#FF8678"; } let myChart = echarts.init(document.getElementById("zhidui")); - myChart.clear(); + myChart.dispose(); this.initCharts(); } //后退 @@ -238,12 +238,12 @@ export class EchartsComponent implements OnInit { if (e.name.indexOf("支队") != -1) { this.zhiData = this.daData; this.level = 1; - myChart.clear(); + myChart.dispose(); this.initCharts(); } else if (e.name.indexOf("大队") != -1) { this.zhiData = this.jiuData; this.level = 2; - myChart.clear(); + myChart.dispose(); this.initCharts(); } else { window.open("home/statistic-examination/station-examinee");