From 7fe6f8d760ab1b02b83813e26345c5264284a213 Mon Sep 17 00:00:00 2001
From: GULIMMO <2820890765@qq.com>
Date: Wed, 01 Nov 2023 09:24:33 +0800
Subject: [PATCH] 楼盘页面修改
---
subPackage/house/roomDetails/index.vue | 1 -
subPackage/house/family/index.vue | 6 +++---
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/subPackage/house/family/index.vue b/subPackage/house/family/index.vue
index 1a5393f..018ac15 100644
--- a/subPackage/house/family/index.vue
+++ b/subPackage/house/family/index.vue
@@ -18,10 +18,10 @@
<u-grid class="flex flex-wrap" col="2" :border="true">
<u-grid-item v-for="(scItem, scIndex) in cItem.children" :key="scItem.id" @click.native="pushPage(scItem)">
<view class="room-box flex f-d-c">
- <view class="flex a-i-c j-c-s-b" v-show="scItem.resideStatus">
+ <view class="flex a-i-c j-c-s-b" v-show="scItem.residentialStatus">
<view class="l">{{scItem.realName}}</view>
<view class="r flex">
- <view v-show="scItem.resideStatus">
+ <view v-show="scItem.residentialStatus">
<u-icon name="photo"></u-icon>
</view>
@@ -82,7 +82,7 @@
},
methods: {
async getBuildingList() {
- const res = await getHouseInfoList(3, '9cedfffba380fc19f88ede2323aca651')
+ const res = await getHouseInfoList(3, this.currentId)
res.data.forEach(item => {
item.children && item.children.sort((a, b) => a.floor - b.floor)
})
diff --git a/subPackage/house/roomDetails/index.vue b/subPackage/house/roomDetails/index.vue
index e089107..3fdc026 100644
--- a/subPackage/house/roomDetails/index.vue
+++ b/subPackage/house/roomDetails/index.vue
@@ -149,7 +149,6 @@
// 多人个租客将第一个作为显示
item.tenant = item.houseTenantVOList.length > 0 ? item.houseTenantVOList[0].name : ''
})
-
}
}
}
--
Gitblit v1.9.3