diff --git a/frontend/src/business/components/performance/report/components/MonitorCard.vue b/frontend/src/business/components/performance/report/components/MonitorCard.vue index 5b35f10343..d6dd28d045 100644 --- a/frontend/src/business/components/performance/report/components/MonitorCard.vue +++ b/frontend/src/business/components/performance/report/components/MonitorCard.vue @@ -28,7 +28,8 @@ - @@ -123,6 +124,7 @@ export default { tableData: [], checkList: checkList, checkOptions: checkOptions, + showChart: true, baseOption: { color: color, grid: { @@ -236,14 +238,18 @@ export default { this.checkList = checkList; } this.totalOption = {}; + this.showChart = false; this.$nextTick(() => { + this.showChart = true; this.totalOption = this.getOption(id); this.changeDataZoom({start: 0, end: 100}); }); }, handleCheckListChange(id) { this.totalOption = {}; + this.showChart = false; this.$nextTick(() => { + this.showChart = true; this.totalOption = this.getOption(id); this.changeDataZoom({start: 0, end: 100}); });