'''<view v-for="(item,index) in list">
<view class="videoContent">{{item.title}}</view>
<view class="shoplist_oc">
<view class="shoplist_ocvideo">
<video :src="item.video" :id="videoId(item.id)" style="width:100%;height:100%"
@timeupdate="addTime(index,item.id,$event)" @pause="pause(index,item.id)"
@play="video_play(index,item.id)" @ended="end(index,item.id)" :show-progress="false"
id="myVideo"
picture-in-picture-show-progress="false" enable-progress-gesture="false">
</video>
</view>
</view>
</view>'''
.shoplist_oc {
width: 100%;
}
.shoplist_ocvideo {
width: 100%;
height: 330rpx;
margin: 30rpx auto 20rpx;
}