个人房源

This commit is contained in:
2023-07-13 15:45:55 +08:00
parent fdec30ad9c
commit 348057a649
4 changed files with 101 additions and 24 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div class="home">
<pageTopBar :tabMens="indexData.data"></pageTopBar>
<pageTopBar></pageTopBar>
<!-- <headerNavigation></headerNavigation> -->
<!-- 搜索模块 -->
<seachModule :list="seachTypeData.data" :hotList="indexData.data.hotSearcheWords"></seachModule>
@@ -246,7 +246,7 @@ let loadMore = ref(true)
//瀑布流数据
let getRecommendList = () => {
api.recommendList({
page: pages,
page: pages.value,
limit: 30,
type: ListSelectBtn.selectType
}).then(res => {

View File

@@ -0,0 +1,41 @@
<template>
<div>
<pageTopBar></pageTopBar>
</div>
</template>
<script setup>
import pageTopBar from '../../components/pageTopBar/pageTopBar.vue';
</script>
<style scoped>
img {
object-fit: contain;
}
.dis-f {
display: flex;
}
.jus-x {
justify-content: center;
}
.al-item {
align-items: center;
}
.pos-r {
position: relative;
}
.body-maxWidth {
width: 1200px;
min-width: 1200px;
}
.s-w-100 {
width: 100%;
}
</style>