Explorar o código

[bug-349]首页数据自动刷新仅限待办

cfort %!s(int64=2) %!d(string=hai) anos
pai
achega
9e2dbe388e
Modificáronse 1 ficheiros con 4 adicións e 1 borrados
  1. 4 1
      src/views/system/dashboard/components/workbench.vue

+ 4 - 1
src/views/system/dashboard/components/workbench.vue

@@ -329,7 +329,10 @@ export default {
         // 轮询刷新公告数据和任务数据
         this.timer = setInterval(() => {
             // this.getMessage()
-            this.getData(this.activeTab)
+            // 仅待办事宜自动更新数据
+            if (this.activeTab === 'wait') {
+                this.getData(this.activeTab)
+            }
         }, 30 * 1000)
     },
     beforeDestroy () {