浏览代码

环形图可以销毁

zhaojijng 2 年之前
父节点
当前提交
9b3df8b6e5
共有 2 个文件被更改,包括 13 次插入5 次删除
  1. 11 3
      src/components/airSwitchHor.vue
  2. 2 2
      src/views/horiScreen/index.vue

+ 11 - 3
src/components/airSwitchHor.vue

@@ -1,7 +1,10 @@
 <template>
     <div class="airSwitch">
         <div class="airWrap">
-            <div class="container" id="container"></div>
+            <div
+                class="container"
+                id="container"
+            ></div>
             <div class="air-title">
                 <span> {{ airStatus ? "空调已开启" : "空调已关闭" }}</span>
             </div>
@@ -26,12 +29,16 @@ export default defineComponent({
         const { airValue, airStatus } = useAirSwitch();
         const allData = reactive({
             airStatus: airStatus,
+            achart: null,
         });
         watch(airValue, (newValue, oldValue) => {
             initChart();
         });
 
         const initChart = () => {
+            if (allData.achart) {
+                allData.achart.destroy();
+            }
             var avalue = airValue.value || 0;
             const data = [
                 { type: "开启", value: avalue },
@@ -82,11 +89,12 @@ export default defineComponent({
                 offsetY: 26,
             });
             chart.render();
+            allData.achart = chart;
 
             interval.elements[0].setState("active", true); //将第一个数据设置成 选中状态
         };
         onMounted(() => {
-            // initChart();
+            //initChart();
         });
         // onMounted(() => {
         //     const data = [
@@ -151,7 +159,7 @@ export default defineComponent({
     }
 
     .container {
-        height: 200px;
+        height: 210px;
     }
 
     .air-title {

+ 2 - 2
src/views/horiScreen/index.vue

@@ -116,7 +116,7 @@ export default {
                         return;
                     }
                     allData.timePageShow();
-                }, 60000);
+                }, 6000);
             },
         });
         onMounted(() => {
@@ -254,7 +254,7 @@ export default {
     }
     .bottomCont {
         height: 50%;
-        padding-top: 20px;
+        padding-top: 24px;
         box-sizing: border-box;
     }
 }