|
@@ -208,7 +208,7 @@ export default {
|
|
|
|
|
|
getData() {
|
|
|
this.zoneParam = {
|
|
|
- objectType: this.zoneCode,
|
|
|
+ classCode: this.zoneCode,
|
|
|
pageNumber: this.page.pageNumber,
|
|
|
pageSize: this.page.pageSize,
|
|
|
orders: "createTime desc, localName desc, localId desc, id asc"
|
|
@@ -225,16 +225,16 @@ export default {
|
|
|
} else if (this.buildFloorSelectd.length === 2) {
|
|
|
switch (this.buildFloorSelectd[1]) {
|
|
|
case 'noKnow':
|
|
|
- this.zoneParam.BuildingId = this.buildFloorSelectd[0];
|
|
|
- this.zoneParam.FloorId = 'isnull';
|
|
|
+ this.zoneParam.buildingId = this.buildFloorSelectd[0];
|
|
|
+ this.zoneParam.floorId = 'isnull';
|
|
|
break;
|
|
|
case 'all':
|
|
|
- this.zoneParam.BuildingId = this.buildFloorSelectd[0];
|
|
|
+ this.zoneParam.buildingId = this.buildFloorSelectd[0];
|
|
|
// params.FloorId = '';
|
|
|
break;
|
|
|
default:
|
|
|
- this.zoneParam.BuildingId = this.buildFloorSelectd[0];
|
|
|
- this.zoneParam.FloorId = this.buildFloorSelectd[1]
|
|
|
+ this.zoneParam.buildingId = this.buildFloorSelectd[0];
|
|
|
+ this.zoneParam.floorId = this.buildFloorSelectd[1]
|
|
|
|
|
|
}
|
|
|
}
|