fix: 修复有些图表刷新按钮不生效的问题

This commit is contained in:
chenjinsong
2021-11-12 11:46:09 +08:00
parent 98846fd2da
commit 8375a4572b
3 changed files with 12 additions and 6 deletions

View File

@@ -63,7 +63,15 @@
</div>
<div class="entity-detail__body">
<div class="cn-panel">
<chart v-for="chart in detailChartList" :key="chart.id" :chart="chart" :time-filter="timeFilter" :ref="`chart-${chart.id}`" :entity="entity"></chart>
<chart
v-for="chart in detailChartList"
:key="chart.id"
:chart="chart"
:time-filter="timeFilter"
:ref="`chart-${chart.id}`"
:entity="entity"
@getCurrentTimeRange="getCurrentTimeRange"
></chart>
</div>
</div>
</div>