<swiper
class="swiper-box"
duration="300"
:circular="circular"
:current="current"
:vertical="true"
bindanimationfinish="swiperChange"
bindtap="tabVideo"
>
<swiper-item v-for="(item, index) in videoObjList" :key="index">
<live-player
v-if="topicDetail.liveStatus && topicDetail.liveStatus.code === 2"
:src="playUrl"
:style="{ height: poptype === 'video-share' ? 0 : showSlide && goodsList.length > 0 ? '50%' : '100%' }"
autoplay
:class="{ goodsListShow: showSlide && goodsList.length > 0, 'textinput-show': liveTextInputShow }"
objectFit="fillCrop"
binderror="livePlayerError"
:controls="false"
>
<cover-view class="flex-box" style="position: relative;">
<cover-view class="live-info">
<live-celebrity
:avatar="topicDetail.liveHostInfo.headImg.url"
:name="topicDetail.liveHostInfo.userName"
:spectators-number="maxUserNum + lang.watch"
></live-celebrity>
</cover-view>
</cover-view>
</live-player>
</swiper-item>
</swiper>
像这样,swiper里包含直播组件,直播组件上有其他的内容,直播组件宽为100%, 高为100%,这样是滑动不了的吗?
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)