This commit is contained in:
A1300399510
2023-07-27 19:48:32 +08:00
parent 9879550544
commit 556f40efe8
5 changed files with 10 additions and 3 deletions

View File

@@ -60,7 +60,7 @@
<div ref="slideshowList" class="slideshow-list box no-scrollbar flex1 flexacenter">
<div class="item" :class="{ 'pitch': index == carouselIndex }, `item${index}`"
v-for="(item, index) in allCarouselsData" @click="slideshowItem(index)">
<img class="img" :src="item['thumbnail'] || item['imageurl']" />
<img class="img" v-lazy="item['thumbnail'] || item['imageurl']" />
<img class="video-icon" v-if="item['type'] != 'attachment'"
src="@/assets/img/publicImage/video-icon.svg">
</div>

View File

@@ -88,6 +88,7 @@ const getData = () => {
requestLoading = true
proxy.$get("/tenement/pc/api/apartment", {
limit:10,
page,
...pitchValue
}).then(res => {