|
@@ -752,11 +752,11 @@ export default {
|
|
|
this.floorList.unshift({
|
|
|
name: "全部",
|
|
|
localName: "全部",
|
|
|
- floorId: "all"
|
|
|
+ id: "all"
|
|
|
}, {
|
|
|
name: "未明确楼层",
|
|
|
localName: "未明确楼层",
|
|
|
- floorId: "noKnow"
|
|
|
+ id: "noKnow"
|
|
|
})
|
|
|
});
|
|
|
},
|
|
@@ -1192,7 +1192,7 @@ export default {
|
|
|
changeFloor() {
|
|
|
this.checkPointClass = -1;
|
|
|
for (let i = 0; i < this.floorList.length; i++) {
|
|
|
- if (this.floorId == this.floorList[i].floorId) {
|
|
|
+ if (this.floorId == this.floorList[i].id) {
|
|
|
this.floorName = this.floorList[i].localName;
|
|
|
}
|
|
|
}
|