|
|
|
@ -683,8 +683,8 @@ export default { |
|
|
|
}, |
|
|
|
getBuildList () { |
|
|
|
this.$http |
|
|
|
.post('/gov/org/icbuilding/buildingoption', { |
|
|
|
neighborHoodId: this.formData.villageId |
|
|
|
.post('/actual/base/communityBuilding/buildingoption', { |
|
|
|
quartersId: this.formData.villageId |
|
|
|
}) |
|
|
|
.then(({ data: res }) => { |
|
|
|
if (res.code !== 0) { |
|
|
|
@ -700,7 +700,7 @@ export default { |
|
|
|
}, |
|
|
|
getUniList () { |
|
|
|
this.$http |
|
|
|
.post('/gov/org/icbuildingunit/unitoption', { |
|
|
|
.post('/actual/base/communityBuildingUnit/unitoption', { |
|
|
|
buildingId: this.formData.buildId |
|
|
|
}) |
|
|
|
.then(({ data: res }) => { |
|
|
|
@ -717,7 +717,7 @@ export default { |
|
|
|
}, |
|
|
|
getHouseList () { |
|
|
|
this.$http |
|
|
|
.post('/gov/org/ichouse/houseoption', { unitId: this.formData.unitId }) |
|
|
|
.post('/actual/base/communityHouse/houseoption', { buildingId: this.formData.buildId,unitId: this.formData.unitId }) |
|
|
|
.then(({ data: res }) => { |
|
|
|
if (res.code !== 0) { |
|
|
|
return this.$message.error(res.msg) |
|
|
|
|