Commit 04c79eae0ffe81f03260cffa2b5a9f3fc407edaa
Committed by
xp.Huang
1 parent
e96a4fdb
fix: 修复mp端,摄像头点击播放,无法退出全屏问题
(cherry picked from commit 5c060124)
Showing
1 changed file
with
3 additions
and
3 deletions
... | ... | @@ -135,9 +135,9 @@ |
135 | 135 | //播放视频 |
136 | 136 | async playVideo(e) { |
137 | 137 | const {currentTarget: {dataset: {accessmode,id}} = {}} = e |
138 | - let currentId = 'video' + id; | |
139 | - const videoContext = uni.createVideoContext(currentId, this); | |
140 | - videoContext.play() | |
138 | + // let currentId = 'video' + id; | |
139 | + // const videoContext = uni.createVideoContext(currentId, this); | |
140 | + // videoContext.play() | |
141 | 141 | /** |
142 | 142 | * 点击全屏播放当前视频,暂停其余视频 |
143 | 143 | * 兼容APP和MP端 | ... | ... |