dedsudiyu лет назад: 2
Родитель
Сommit
84f3d104a0

+ 2 - 2
src/views/safetyCheck/dataStatistics/checkIndexStatistics.vue

@@ -178,7 +178,7 @@
           //院级
           hiddenDataItemsSubList(obj).then(response => {
             this.total = response.total;
-            this.tableList = response.rows;
+            this.tableList = response.data.records;
           });
           hiddenDataItemsSubListTop(objTop).then(response => {
             this.$set(this,'numData',response.data);
@@ -187,7 +187,7 @@
           //校级
           dataStatisticsItemsList(obj).then(response => {
             this.total = response.total;
-            this.tableList = response.rows;
+            this.tableList = response.data.records;
           });
           dataStatisticsItemsListTop(objTop).then(response => {
             this.$set(this,'numData',response.data);

+ 1 - 1
src/views/safetyCheck/dataStatistics/laboratoryStatistics.vue

@@ -166,7 +166,7 @@
         }
         dataStatisticsSubList(obj).then(response => {
           this.total = response.total;
-          this.tableList = response.rows;
+          this.tableList = response.data.records;
         });
         dataStatisticsSubListTop(obj).then(response => {
           this.$set(this,'numData',response.data);

+ 1 - 1
src/views/safetyCheck/dataStatistics/safetyHazardStatistics.vue

@@ -168,7 +168,7 @@
         }
         dataStatisticsHazardList(obj).then(response => {
           this.total = response.total;
-          this.tableList = response.rows;
+          this.tableList = response.data.records;
         });
         dataStatisticsHazardListTop(obj).then(response => {
           this.$set(this,'numData',response.data);