소스 검색

延长渲染

三七 3 일 전
부모
커밋
eb6c4ae052
3개의 변경된 파일12개의 추가작업 그리고 3개의 파일을 삭제
  1. 4 1
      src/views/course/courseWatchLog/deptWatchLog.vue
  2. 4 1
      src/views/course/courseWatchLog/index.vue
  3. 4 1
      src/views/course/courseWatchLog/watchLog.vue

+ 4 - 1
src/views/course/courseWatchLog/deptWatchLog.vue

@@ -653,7 +653,10 @@ export default {
       this.queryParams.eTime = this.formatDate(todayEnd);
     },
     handleSendTypeChange() {
-      this.handleQuery(); // 重新查询列表
+      setTimeout(() => {
+        this.handleQuery(); // 重新查询列表
+      }, 200);
+
     },
 
     // 重置日历组件

+ 4 - 1
src/views/course/courseWatchLog/index.vue

@@ -1437,7 +1437,10 @@ export default {
       if(this.queryParams.sendType == 1) {
         this.queryParams.qwUserName = null;
       }
-      this.handleQuery(); // 重新查询列表
+      setTimeout(() => {
+        this.handleQuery();
+      }, 200);
+
     },
 
 

+ 4 - 1
src/views/course/courseWatchLog/watchLog.vue

@@ -939,7 +939,10 @@ export default {
       // 强制重新渲染表格
       this.tableKey += 1;
 
-      this.getList();
+      setTimeout(() => {
+        this.getList();
+      }, 200);
+
     },
 
     // 重置日历组件