diff --git a/src/views/components/resiSearch.vue b/src/views/components/resiSearch.vue index 774f1d65b..71f20f306 100644 --- a/src/views/components/resiSearch.vue +++ b/src/views/components/resiSearch.vue @@ -853,8 +853,8 @@ export default { }, getBuildList () { this.$http - .post('/gov/org/icbuilding/buildingoption', { - neighborHoodId: this.form.villageId + .post('/actual/base/communityBuilding/buildingoption', { + quartersId: this.form.villageId }) .then(({ data: res }) => { if (res.code !== 0) { @@ -870,7 +870,7 @@ export default { }, getUniList () { this.$http - .post('/gov/org/icbuildingunit/unitoption', { + .post('/actual/base/communityBuildingUnit/unitoption', { buildingId: this.form.buildId }) .then(({ data: res }) => { @@ -887,7 +887,7 @@ export default { }, getHouseList () { this.$http - .post('/gov/org/ichouse/houseoption', { unitId: this.form.unitId }) + .post('/actual/base/communityHouse/houseoption', { buildingId: this.form.buildId,unitId: this.form.unitId }) .then(({ data: res }) => { if (res.code !== 0) { return this.$message.error(res.msg) diff --git a/src/views/modules/base/residentManagement/louzhang/louzhangList.vue b/src/views/modules/base/residentManagement/louzhang/louzhangList.vue index 1e16c7c89..74b7925ac 100644 --- a/src/views/modules/base/residentManagement/louzhang/louzhangList.vue +++ b/src/views/modules/base/residentManagement/louzhang/louzhangList.vue @@ -392,8 +392,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) { @@ -409,7 +409,7 @@ export default { }, getUniList () { this.$http - .post('/gov/org/icbuildingunit/unitoption', { + .post('/actual/base/communityBuildingUnit/unitoption', { buildingId: this.formData.buildId }) .then(({ data: res }) => { diff --git a/src/views/modules/base/residentManagement/tefu/tefuList.vue b/src/views/modules/base/residentManagement/tefu/tefuList.vue index f7ebabe53..d9358c989 100644 --- a/src/views/modules/base/residentManagement/tefu/tefuList.vue +++ b/src/views/modules/base/residentManagement/tefu/tefuList.vue @@ -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)