소스 검색

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

cfort 2 년 전
부모
커밋
9e2dbe388e
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  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 () {