Quellcode durchsuchen

feat: 课程数据汇总新增销售端

xdd vor 1 Monat
Ursprung
Commit
ebe44004c5
1 geänderte Dateien mit 4 neuen und 3 gelöschten Zeilen
  1. 4 3
      src/views/course/courseUserStatistics/statistics.vue

+ 4 - 3
src/views/course/courseUserStatistics/statistics.vue

@@ -511,7 +511,7 @@ export default {
       videoList:[],
       logTypeOptions:[],
       // 遮罩层
-      loading: true,
+      loading: false,
       // 导出遮罩层
       exportLoading: false,
       // 选中数组
@@ -568,7 +568,7 @@ export default {
     courseList().then(response => {
       this.courseLists = response.list;
     });
-    this.getList();
+    // this.getList();
     this.getDicts("sys_course_watch_log_type").then(response => {
       this.logTypeOptions = response.data;
     });
@@ -620,8 +620,9 @@ export default {
       qwWatchLogAllStatisticsList(this.queryParams).then(response => {
         this.courseWatchLogList = response.rows;
         this.total = response.total;
+      }).finally(()=>{
         this.loading = false;
-      });
+      })
     },
     // 取消按钮
     cancel() {