Fix:4513 【旅居商城小程序】旅居商家PC端发布的视频资讯在前端未显示视频详情

This commit is contained in:
linxi
2025-11-11 11:28:47 +08:00
parent 5829cb53f1
commit deaea528f3
+4 -4
View File
@@ -108,15 +108,15 @@
{{ item.content }}
</view>
</view>
<view class="info-item-body">
<view class="info-item-body" v-if="item.images && item.images.length > 0">
<view v-if="item.type === 2" class="video">
<view @click="infoItemViewClick(item, index)" v-if="activeVideo !== 'video-item' + index" class="play-icon">
<u-icon name="play-right-fill" color="#fff" size="48"></u-icon>
</view>
<image
v-if="activeVideo !== 'video-item' + index"
:src="item.video + '?vframe/jpg/offset/1'"
:poster="item.video + '?vframe/jpg/offset/1'"
:src="item.images[0] + '?vframe/jpg/offset/1'"
:poster="item.images[0] + '?vframe/jpg/offset/1'"
controls
play-btn-position="center"
:show-fullscreen-btn="false"
@@ -126,7 +126,7 @@
/>
<video
v-else
:src="item.video"
:src="item.images[0]"
controls
autoplay
play-btn-position="center"