
H5,和小程序我打开,能展示视频和滑动。但是我打包成APP,在安卓上,打开视频。就不能滑动了。求解答 ^_^
<swiper :style="{ height: screenHeight+'px', width: windowwidth+'px' }" :touchable="true">
<!-- 视频 -->
<swiper-item v-if="video.videour1 != null">
<video
style="height: screenHeight+'px', width: windowwidth+'px'"
:enable-progress-gesture="false"
:controls="false"
:loop="true"
:autoplay="true"
:src="video.videourl"
></video>
</swiper-item>
<!-- 图片 -->
<swiper-item v-for="tmp in video.imgurls">
<image style="background-color: black;" :style="{ height: screenHeight+'px', width: windowwidth+'px' }" mode="aspectFit" :src="tmp"></image>
</swiper-item>
</swiper>

我加上了,重新打包并没有用,还是只能显示第一个不能滑动