Compare commits

...

2 Commits

7 changed files with 15 additions and 10 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 MiB

View File

@@ -520,6 +520,7 @@ const selectOption = (type, value) => {
&::placeholder { &::placeholder {
color: #7f7f7f; color: #7f7f7f;
font-size:15px;
} }
} }
} }

View File

@@ -386,7 +386,7 @@ img {
font-size: 14px; font-size: 14px;
color: #555555; color: #555555;
margin-top: 20px; margin-top: 20px;
line-height:20px; line-height:17px;
.time { .time {
font-family: 'PingFangSC-Regular', 'PingFang SC', sans-serif; font-family: 'PingFangSC-Regular', 'PingFang SC', sans-serif;
@@ -403,7 +403,7 @@ img {
font-weight: 900; font-weight: 900;
font-size: 20px; font-size: 20px;
color: #F95D5D; color: #F95D5D;
line-height: 23px; line-height: 20px;
margin:0 5PX; margin:0 5PX;
} }
@@ -412,7 +412,7 @@ img {
font-weight: 900; font-weight: 900;
color: #000000; color: #000000;
font-size: 14px; font-size: 14px;
line-height:20px; line-height:15px;
} }
} }

View File

@@ -1,6 +1,7 @@
<template> <template>
<div class="top-bg-img-box pos-r" :style="{ 'height': routePath === '/' ? '568px' : '260px' }"> <div class="top-bg-img-box pos-r" :style="{ 'height': routePath === '/' ? '568px' : '260px' }">
<img src="../../assets/img/edit/bj-img1920.png" class="bg-img" alt=""> <img src="../../assets/homeImage/indexBg.jpg" class="bg-img" alt="" v-show="routePath === '/'">
<img src="../../assets//img/edit/bj-img1920.png" class="bg-img" alt="" v-show="routePath !== '/'">
<div class="info-box"> <div class="info-box">
<!-- 顶部导航 --> <!-- 顶部导航 -->
<div class="dis-f jus-x al-item index-top-navigation-box"> <div class="dis-f jus-x al-item index-top-navigation-box">
@@ -387,7 +388,7 @@ const goIndex = () => router.push("/")
font-family: 'PingFangSC-Regular', 'PingFang SC', sans-serif; font-family: 'PingFangSC-Regular', 'PingFang SC', sans-serif;
font-weight: 400; font-weight: 400;
font-style: normal; font-style: normal;
font-size: 16px; font-size: 15px;
color: #7F7F7F; color: #7F7F7F;
text-align: left; text-align: left;
} }

View File

@@ -50,7 +50,7 @@
<img src="../assets/homeImage/mapImg.png" class="img" alt=""> <img src="../assets/homeImage/mapImg.png" class="img" alt="">
地图找房 地图找房
</div> --> </div> -->
<div class="tool-btn dis-f jus-x al-item add-btn" style="position: relative;"> <div class="tool-btn dis-f jus-x al-item add-btn" :class="{'mg-l-10':routePath==='/'}" style="position: relative;">
<img src="../../assets/homeImage/addBtn.png" class="img" alt=""> <img src="../../assets/homeImage/addBtn.png" class="img" alt="">
发布房源 发布房源
<choosing-identity></choosing-identity> <choosing-identity></choosing-identity>
@@ -463,6 +463,9 @@ defineExpose({
margin-left: 20px; margin-left: 20px;
cursor: pointer; cursor: pointer;
} }
.mg-l-10{
margin-left:10px;
}
.tool-btn { .tool-btn {
width: 160px; width: 160px;

View File

@@ -249,7 +249,7 @@ let getRecommendList = () => {
waterfallList.value = waterfallList.value.concat(res.data.data) waterfallList.value = waterfallList.value.concat(res.data.data)
pagevalue.value = res.data.pagevalue pagevalue.value = res.data.pagevalue
} }
console.log(waterfallList.value) // console.log(waterfallList.value)
if (res.data.data.length >= 30) { if (res.data.data.length >= 30) {
loadMore.value = true loadMore.value = true
loadText.value = '下拉加载更多' loadText.value = '下拉加载更多'
@@ -258,11 +258,11 @@ let getRecommendList = () => {
loadText.value = '到底了' loadText.value = '到底了'
} }
nextTick(() => { nextTick(() => {
console.log(1) // console.log(1)
listMasonryInstance.reloadItems(); listMasonryInstance.reloadItems();
listMasonryInstance.layout(); listMasonryInstance.layout();
setTimeout(() => { setTimeout(() => {
console.log(3) // console.log(3)
listMasonryInstance.reloadItems(); listMasonryInstance.reloadItems();
listMasonryInstance.layout(); listMasonryInstance.layout();
}, 600) }, 600)
@@ -697,7 +697,7 @@ img {
font-family: 'PingFangSC-Regular', 'PingFang SC', sans-serif; font-family: 'PingFangSC-Regular', 'PingFang SC', sans-serif;
font-weight: 400; font-weight: 400;
font-style: normal; font-style: normal;
font-size: 16px; font-size: 15px;
color: #7F7F7F; color: #7F7F7F;
text-align: left; text-align: left;
} }