From cbf3af6aa26bdad259142003c0ddd3833f2354d2 Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 23 Jun 2022 17:18:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=8E=A5=E5=8F=A3=E8=B7=AF?= =?UTF-8?q?=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/saas/AppBuilding/detail.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/saas/AppBuilding/detail.vue b/src/saas/AppBuilding/detail.vue index 657f2030..727e8486 100644 --- a/src/saas/AppBuilding/detail.vue +++ b/src/saas/AppBuilding/detail.vue @@ -209,7 +209,7 @@ export default { getStatistics() { //获取楼栋统计信息 let {id} = this.detail - this.$http.post(`app/appcommunitybuildinginfo/statistics`, null, { + this.$http.post(`/app/appcommunitybuildinginfo/statistics`, null, { params: {id, unitNum: this.eachUnitNumber} }).then(res => { if (res?.data) { @@ -220,7 +220,7 @@ export default { getList() { //获取房间列表 let {id: buildingId} = this.detail - this.$http.post(`app/appcommunityhouseinfo/list`, null, { + this.$http.post(`/app/appcommunityhouseinfo/list`, null, { params: {size: 10000, buildingId, unitNumber: this.eachUnitNumber} }).then(res => { if (res?.data) { @@ -230,7 +230,7 @@ export default { }, getHouseDetail(id) { this.houseId = id - this.$http.post(`app/appcommunityhouseinfo/queryDetailById?id=${id}`).then(res => { + this.$http.post(`/app/appcommunityhouseinfo/queryDetailById?id=${id}`).then(res => { if (res?.data) { this.houseInfo = res.data this.show = true