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
           }