Browse Source

Merge branch 'dev'

zhangyu 5 years ago
parent
commit
0b4e87cce3
1 changed files with 1 additions and 4 deletions
  1. 1 4
      src/views/model/report/index.vue

+ 1 - 4
src/views/model/report/index.vue

@@ -199,7 +199,7 @@ export default {
   methods: {
     getModelFloorCount() {// 获取楼层模型文件数量,计算出检查出问题的模型文件
       let promise1 = new Promise(resolve => {
-        queryFloorList(this.params, res => {
+        queryFloorList({}, res => {
           resolve(res);
         })
       })
@@ -425,9 +425,6 @@ export default {
   },
   watch: {
     projectId() {
-      this.params = {
-        ProjectId: this.projectId
-      }
       this.getModelFileCount();
       this.getModelFloorCount();
     }