浏览代码

fix: 增加主控台环形图自动播放在页面卸载时销毁

bxy 1 年之前
父节点
当前提交
673d12746c
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/views/dashboard/home/components/AlgoDataPanel.vue

+ 2 - 2
src/views/dashboard/home/components/AlgoDataPanel.vue

@@ -90,11 +90,11 @@
   onMounted(() => {
     // const contentChart = document.querySelector('.echarts.chart') as HTMLDivElement;
     // titleLeft.value = contentChart?.offsetWidth * 0.3 + 'px';
-    if (myChart.value) startAutoPlay();
+    if (myChart.value !== null) startAutoPlay();
   });
 
   onUnmounted(() => {
-    stopAutoPlay();
+    if (myChart.value !== null) stopAutoPlay();
   });
 
   function startAutoPlay() {