|
@@ -188,7 +188,7 @@ export default {
|
|
|
mounted() { },
|
|
|
created() {
|
|
|
this.params = {
|
|
|
- ProjectId: this.projectId
|
|
|
+ Orders: "Name asc"
|
|
|
}
|
|
|
this.getModelFileCount();
|
|
|
this.getModelFloorCount();
|
|
@@ -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();
|
|
|
}
|