Просмотр исходного кода

Merge branch 'V0.0.2' of http://10.87.10.227:4000/jzyd_yyds/soc_web into V0.0.2

jiawuxian 2 лет назад
Родитель
Сommit
aa66a27fce
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      src/views/core/reportForms/safetyInspectReport.vue

+ 3 - 3
src/views/core/reportForms/safetyInspectReport.vue

@@ -51,7 +51,7 @@
           </el-row>
           <el-table
             border
-            height="600"
+            height="800"
             size="small"
             v-loading="loading" :data="checkList" @selection-change="handleSelectionChange">
        
@@ -203,8 +203,8 @@
           this.loading = true;
           listReport(this.queryParams).then(response => {
          this.orgName=response.orgName;
-            this.checkList = response.data.rows;
-            this.total = response.data.total;
+            this.checkList = response.data;
+            // this.total = response.data.total;
             this.loading = false;
           });
         },