From 7d2496c2e4b6458524cd2ee5ec4ee5bd68acc430 Mon Sep 17 00:00:00 2001 From: duanliangtao Date: Mon, 25 Sep 2023 17:22:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=B1=85=E6=B0=91=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E8=B0=83=E7=94=A8=E4=BA=86=E8=80=81=E4=BA=A7=E5=93=81?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E7=9A=84=E5=8E=86=E5=8F=B2=E9=81=97=E7=95=99?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/components/resiSearch.vue | 8 ++++---- .../base/residentManagement/louzhang/louzhangList.vue | 6 +++--- .../modules/base/residentManagement/tefu/tefuList.vue | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) 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)