瀏覽代碼

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

houzekong 5 天之前
父節點
當前提交
d14ce4caa5
共有 1 個文件被更改,包括 6 次插入1 次删除
  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);
   }