Fix:2950 【商城小程序】非遗文化店铺封面为视频时显示空白

This commit is contained in:
modendeveloper
2024-12-24 23:35:18 +08:00
parent c7fc52d5c3
commit 3c897506d2
+2 -1
View File
@@ -47,7 +47,8 @@
<!-- -->
<view class="card-item v12-white v12-radius-20 column-flex" v-for="(item, index) in details.pageB.hotels" :key="index" @click="toStore(item)">
<view>
<image class="card-item-img" :src="item.cover" mode="aspectFit|aspectFill|widthFix" lazy-load="false"></image>
<image v-if="item.coverType === 1" class="card-item-img" :src="item.cover" mode="aspectFit|aspectFill|widthFix" lazy-load="false"></image>
<video v-if="item.coverType === 2" class="card-item-img" :show-center-play-btn="false" :show-fullscreen-btn="false" :show-play-btn="false" :src="item.cover" :poster="item.cover + '?vframe/jpg/offset/1'"></video>
<view class="more-t v12-font-28 v12-font-bold v12-px-2">
{{ item.content || '' }}
</view>