|
@@ -356,14 +356,14 @@ export default {
|
|
|
if (this.form.SubTypeName.length) {
|
|
|
param.SubTypeNameList = this.form.SubTypeName;
|
|
|
}
|
|
|
- if (this.locationVal.length == 1) {
|
|
|
- param.BuildLocalName = this.locationVal[0];
|
|
|
- } else if (this.locationVal.length == 2) {
|
|
|
- param.FloorLocalName = this.locationVal[1];
|
|
|
- } else if (this.locationVal.length == 3) {
|
|
|
- param.RoomLocalName = this.locationVal[2];
|
|
|
- } else if (this.locationVal.length == 4) {
|
|
|
- param.SpaceType = this.locationVal[3];
|
|
|
+ if (this.form.locationVal.length == 1) {
|
|
|
+ param.BuildLocalName = this.form.locationVal[0];
|
|
|
+ } else if (this.form.locationVal.length == 2) {
|
|
|
+ param.FloorLocalName = this.form.locationVal[1];
|
|
|
+ } else if (this.form.locationVal.length == 3) {
|
|
|
+ param.RoomLocalName = this.form.locationVal[2];
|
|
|
+ } else if (this.form.locationVal.length == 4) {
|
|
|
+ param.SpaceType = this.form.locationVal[3];
|
|
|
}
|
|
|
this.rTableLoading = true;
|
|
|
dynamicPendingobjs(param, res => {
|