From 76f8a30bad5e7e5fca0358a7b81c10d6c52bcd6e Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 23 Dec 2021 17:00:53 +0800 Subject: [PATCH] BUG 25790 --- src/apps/AppBuilding/list.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/apps/AppBuilding/list.vue b/src/apps/AppBuilding/list.vue index 0dcd0db1..8c588d8f 100644 --- a/src/apps/AppBuilding/list.vue +++ b/src/apps/AppBuilding/list.vue @@ -7,7 +7,7 @@

{{ item.communityName }}

-

{{ item.createAddress }}

+

{{ item.cellName }}

@@ -49,7 +49,10 @@ export default { communityName: this.title } }).then(res => { - if (res.code == 0) { + if (res?.data) { + res.data.records.forEach(e => { + e.cellName = `${e.communityName + e.buildingNumber}栋${e.unitNumber}单元` + }) if (this.current > 1 && this.current > res.data.pages) { return }