19976 【生产】先切到视频频道、视频还没有播放之前,切换到我的频道页,视频频道里面的视频会一直播放。
切换出去后再切回来isPlay设置为true触发play后提示err显示没有stop不能play故改为stop
Showing
1 changed file
with
2 additions
and
1 deletions
| @@ -98,7 +98,7 @@ export struct DetailPlayShortVideoPage { | @@ -98,7 +98,7 @@ export struct DetailPlayShortVideoPage { | ||
| 98 | this.imageVisible = false | 98 | this.imageVisible = false |
| 99 | }) | 99 | }) |
| 100 | } else { | 100 | } else { |
| 101 | - this.playerController.pause() | 101 | + this.playerController.stop() |
| 102 | } | 102 | } |
| 103 | } | 103 | } |
| 104 | } | 104 | } |
| @@ -189,6 +189,7 @@ export struct DetailPlayShortVideoPage { | @@ -189,6 +189,7 @@ export struct DetailPlayShortVideoPage { | ||
| 189 | } | 189 | } |
| 190 | 190 | ||
| 191 | async aboutToAppear() { | 191 | async aboutToAppear() { |
| 192 | + this.isPlay = true | ||
| 192 | if (!this.onlyWifiLoadVideo) { | 193 | if (!this.onlyWifiLoadVideo) { |
| 193 | this.onlyWifiLoadVideo = await onlyWifiLoadVideo() | 194 | this.onlyWifiLoadVideo = await onlyWifiLoadVideo() |
| 194 | this.toastTextVisible = this.onlyWifiLoadVideo ? false : true | 195 | this.toastTextVisible = this.onlyWifiLoadVideo ? false : true |
-
Please register or login to post a comment