Explorar el Código

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

houzekong hace 5 días
padre
commit
d14ce4caa5
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  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);
   }