GULIMMO
2023-11-01 7fe6f8d760ab1b02b83813e26345c5264284a213
楼盘页面修改
2 files modified
7 ■■■■■ changed files
subPackage/house/family/index.vue 6 ●●●● patch | view | raw | blame | history
subPackage/house/roomDetails/index.vue 1 ●●●● patch | view | raw | blame | history
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)
                })
subPackage/house/roomDetails/index.vue
@@ -149,7 +149,6 @@
                    // 多人个租客将第一个作为显示
                    item.tenant = item.houseTenantVOList.length > 0 ? item.houseTenantVOList[0].name : ''
                })
            }
        }
    }