Преглед изворни кода

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() {