Browse Source

[Fix 0000] 可配置首页思山岭页面数据问题修复

houzekong 4 days ago
parent
commit
d14ce4caa5
1 changed files with 6 additions and 1 deletions
  1. 6 1
      src/views/vent/home/configurable/ventV6.vue

+ 6 - 1
src/views/vent/home/configurable/ventV6.vue

@@ -141,7 +141,12 @@
 
   function initInterval() {
     setInterval(() => {
-      list({}).then(updateData);
+      list({
+        types: configs.value
+          .filter((e) => e.deviceType)
+          .map((e) => e.deviceType)
+          .join(','),
+      }).then(updateData);
     }, 60000);
   }