Explorar o código

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

bxy hai 1 ano
pai
achega
673d12746c
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  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() {