首页懒加载
This commit is contained in:
parent
1e3bd6068e
commit
f7fe717a7e
@ -8,7 +8,7 @@
|
||||
<div class="intermediary-type" v-if="itemData.isintermediary">
|
||||
认证中介
|
||||
</div>
|
||||
<img class="apartment-img" :src="itemData.imageLocal || itemData.image"
|
||||
<img class="apartment-img" v-lazy="itemData.imageLocal || itemData.image"
|
||||
v-if="itemData.type === 'housing' || itemData.type === 'apartment'" />
|
||||
<div class="authentication-box"
|
||||
v-if="(itemData && itemData.type === 'housing' && itemData && itemData.verified) || (itemData && itemData.type === 'apartment' && itemData && itemData.isintermediary)">
|
||||
|
@ -53,7 +53,8 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="information-wx-img" style="margin-top:20px;">
|
||||
<img src="../assets/homeImage/informationWx.svg" class="information-wx-img" alt="">
|
||||
<!-- <img src="../assets/homeImage/informationWx.svg" class="information-wx-img" alt=""> -->
|
||||
<img v-lazy="`${require('@/assets/homeImage/informationWx.svg')}`" class="information-wx-img" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="information-right-box dis-f jus-bet"
|
||||
@ -62,9 +63,11 @@
|
||||
<div class="img-box pos-r" v-for="(item, i) in indexData.data.operationNumber" :key="i"
|
||||
:style="{ 'margin-top': i > 1 ? '19px' : 0 }">
|
||||
|
||||
<img :src="item.image" class="img-box" alt="">
|
||||
<!-- <img :src="item.image" class="img-box" alt=""> -->
|
||||
<img v-lazy="item.image" class="img-box" alt="">
|
||||
<div class="img-list">
|
||||
<img :src="item.qrcode" class="img" alt="">
|
||||
<!-- <img :src="item.qrcode" class="img" alt=""> -->
|
||||
<img v-lazy="item.qrcode" class="img" alt="">
|
||||
<div>
|
||||
{{ item.name }}
|
||||
</div>
|
||||
@ -719,4 +722,5 @@ img {
|
||||
font-size: 15px;
|
||||
color: #7F7F7F;
|
||||
text-align: left;
|
||||
}</style>
|
||||
}
|
||||
</style>
|
||||
|
Loading…
x
Reference in New Issue
Block a user