<template> <div id="video"> <swiper index="{{currIndex}}" loop="{{false}}" vertical="{{true}}" id="swiper" @change="qiehuan"> <div for="{{chapterList}}"> <block if="{{currIndex == $idx || $idx == currIndex - 1 || $idx == currIndex+1}}"> <video src="{{$item.src}}" if="{{$item.src}}" autoplay="{{currIndex == $idx ? true : false}}" @start="handlePlay"></video> </block> </div> </swiper> </div> </template>
handlePlay(e){ console.log(e) prompt.showDialog({ message : e }) },
handleplay 一点反应也没有啊 请问啥情况 |