|
|
@ -276,23 +276,25 @@ |
|
|
watch: { |
|
|
watch: { |
|
|
ids: function (val) { |
|
|
ids: function (val) { |
|
|
if (val.length === 0) { |
|
|
if (val.length === 0) { |
|
|
this.dataForm.streetId = '' |
|
|
// this.dataForm.streetId = '' |
|
|
this.dataForm.communityId = '' |
|
|
// this.dataForm.communityId = '' |
|
|
this.dataForm.deptId = '' |
|
|
this.dataForm.deptId = '' |
|
|
} |
|
|
} |
|
|
if (val.length === 1) { |
|
|
if (val.length === 1) { |
|
|
this.dataForm.streetId = this.ids[0] |
|
|
// this.dataForm.streetId = this.ids[0] |
|
|
this.dataForm.communityId = '' |
|
|
// this.dataForm.communityId = '' |
|
|
this.dataForm.deptId = '' |
|
|
// this.dataForm.deptId = '' |
|
|
|
|
|
this.dataForm.deptId = this.ids[0] |
|
|
} |
|
|
} |
|
|
if (val.length === 2) { |
|
|
if (val.length === 2) { |
|
|
this.dataForm.streetId = this.ids[0] |
|
|
// this.dataForm.streetId = this.ids[0] |
|
|
this.dataForm.communityId = this.ids[1] |
|
|
// this.dataForm.communityId = this.ids[1] |
|
|
this.dataForm.deptId = '' |
|
|
// this.dataForm.deptId = '' |
|
|
|
|
|
this.dataForm.deptId = this.ids[1] |
|
|
} |
|
|
} |
|
|
if (val.length === 3) { |
|
|
if (val.length === 3) { |
|
|
this.dataForm.streetId = this.ids[0] |
|
|
// this.dataForm.streetId = this.ids[0] |
|
|
this.dataForm.communityId = this.ids[1] |
|
|
// this.dataForm.communityId = this.ids[1] |
|
|
this.dataForm.deptId = this.ids[2] |
|
|
this.dataForm.deptId = this.ids[2] |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|