Преглед на файлове

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