Browse Source

删除调试信息

LXXXY 5 years ago
parent
commit
3134f7e777

+ 0 - 6
src/views/ledger/cenotelist/relatedSpace.vue

@@ -197,12 +197,6 @@ export default {
           this.showBuildDot = true;
         }
         this.changeBuilding(this.buildingList[0].BuildID);
-        // this.building = this.buildingList[0].BuildID;
-        // this.buildingObj = this.buildingList[0];
-        // if (this.buildingObj.Floor && this.buildingObj.Floor.length) {
-        //   this.floor = this.buildingObj.Floor[0].FloorID;
-        // }
-
       }
       else {
         this.buildingList = [];

+ 0 - 41
src/views/ledger/cenotelist/relatedSpaceList.vue

@@ -186,47 +186,6 @@ export default {
     spaceType: Object,
     floorType: Object
   },
-  // computed: {
-  //   buildingData() {
-  //     if (!this.buildingList || !this.buildingList.length) {
-  //       return [];
-  //     }
-  //     let bL = this.buildingList.concat();
-  //     bL.map(item => {
-  //       item.value = item.BuildID;
-  //       item.label = item.BuildLocalName;
-  //       item.children = [];
-  //       if (item.Floor instanceof Array) {
-  //         item.children = item.Floor.map(fitem => {
-  //           fitem.value = fitem.FloorID
-  //           fitem.label = fitem.FloorLocalName
-  //           return fitem
-  //         })
-  //       }
-  //       if (!this.$route.query.onlyRead) {
-  //         item.children.unshift({
-  //           value: "noKnow",
-  //           label: "未明确建筑"
-  //         })
-  //       }
-  //       item.children.unshift({
-  //         value: "all",
-  //         label: "全部"
-  //       })
-  //     });
-  //     if (!this.$route.query.onlyRead) {
-  //       bL.unshift({
-  //         value: "all",
-  //         label: "全部"
-  //       }, {
-  //         value: "noKnow",
-  //         label: "未明确建筑"
-  //       });
-  //     }
-  //     console.log("这是", bL)
-  //     return bL;
-  //   }
-  // },
   watch: {
     space: {
       handler() {