fix: mobile 产品详情页图册中视频放第一个sku下最后一个

This commit is contained in:
2025-07-03 14:01:34 +08:00
parent 57058dd150
commit 9292e40053

View File

@@ -37,6 +37,13 @@
<img src="{$photo}" alt="" /> <img src="{$photo}" alt="" />
</div> </div>
{/volist} {/volist}
{if condition="!empty($product.video_img) && !empty($product.video_url) && $idx == 1"}
<div class="swiper-slide">
<video poster="{$product.video_img}" autoplay="autoplay" muted="muted" loop="loop" id="video" controls>
<source src="{$product.video_url}" type="video/mp4"/>
</video>
</div>
{/if}
</div> </div>
<!-- 如果需要分页器 --> <!-- 如果需要分页器 -->
<div class="swiper-pagination"></div> <div class="swiper-pagination"></div>