fix(19282): UI还原问题-【uat】进入横屏直播详情页,点击暂停后,再次点击播放,进度条消失,预期显示4秒后消失
Showing
1 changed file
with
5 additions
and
1 deletions
| @@ -56,7 +56,11 @@ export struct PlayUIComponent { | @@ -56,7 +56,11 @@ export struct PlayUIComponent { | ||
| 56 | this.playerController.onStatusChangeForPlayUIComponent = (status: number) => { | 56 | this.playerController.onStatusChangeForPlayUIComponent = (status: number) => { |
| 57 | if(1 == status){ | 57 | if(1 == status){ |
| 58 | this.ispause = false | 58 | this.ispause = false |
| 59 | - this.isMenuVisible = false | 59 | + if(this.isMenuVisible){ |
| 60 | + this.onChangeMenuVisible() | ||
| 61 | + }else{ | ||
| 62 | + this.isMenuVisible = true | ||
| 63 | + } | ||
| 60 | }else if(2 == status){ | 64 | }else if(2 == status){ |
| 61 | this.ispause = true | 65 | this.ispause = true |
| 62 | } | 66 | } |
-
Please register or login to post a comment