Showing
4 changed files
with
5 additions
and
2 deletions
| @@ -645,11 +645,13 @@ const app = Vue.createApp({ | @@ -645,11 +645,13 @@ const app = Vue.createApp({ | ||
| 645 | if (state.isLogined == 1) { | 645 | if (state.isLogined == 1) { |
| 646 | // 已登录 | 646 | // 已登录 |
| 647 | if (window.config.VUE_BASE_NODE === 'dev') { | 647 | if (window.config.VUE_BASE_NODE === 'dev') { |
| 648 | + showButton.value = true | ||
| 648 | showClook.value = true | 649 | showClook.value = true |
| 649 | } else { | 650 | } else { |
| 650 | clookStatus(true) // 查"关注"状态 , 更新按钮上的文字 | 651 | clookStatus(true) // 查"关注"状态 , 更新按钮上的文字 |
| 651 | } | 652 | } |
| 652 | } else { | 653 | } else { |
| 654 | + showButton.value = true | ||
| 653 | showClook.value = true | 655 | showClook.value = true |
| 654 | } | 656 | } |
| 655 | } | 657 | } |
| @@ -20,7 +20,7 @@ export struct PlayerInfoComponent { | @@ -20,7 +20,7 @@ export struct PlayerInfoComponent { | ||
| 20 | PlayerUIComponent({ playerController: this.playerController }) | 20 | PlayerUIComponent({ playerController: this.playerController }) |
| 21 | .margin({ | 21 | .margin({ |
| 22 | // bottom: this.bottomSafeHeight + 'px', | 22 | // bottom: this.bottomSafeHeight + 'px', |
| 23 | - top: this.topSafeHeight + 'px' | 23 | + top:this.isFullScreen ? 0 : this.topSafeHeight + 'px' |
| 24 | }) | 24 | }) |
| 25 | } | 25 | } |
| 26 | .cachedCount(2) | 26 | .cachedCount(2) |
| @@ -59,7 +59,7 @@ export struct PlayerUIComponent { | @@ -59,7 +59,7 @@ export struct PlayerUIComponent { | ||
| 59 | } | 59 | } |
| 60 | this.isFullScreen = true | 60 | this.isFullScreen = true |
| 61 | }) | 61 | }) |
| 62 | - .visibility(this.isSmall ? Visibility.Visible : Visibility.Hidden) | 62 | + .visibility(!this.isFullScreen ? Visibility.Visible : Visibility.Hidden) |
| 63 | .margin({ top: 301}) // 195 + 211 - 105 | 63 | .margin({ top: 301}) // 195 + 211 - 105 |
| 64 | .position({ x: '96.8%' }) | 64 | .position({ x: '96.8%' }) |
| 65 | .markAnchor({ x: '96.8%' }) | 65 | .markAnchor({ x: '96.8%' }) |
| @@ -138,5 +138,6 @@ export struct PlayerProgressView { | @@ -138,5 +138,6 @@ export struct PlayerProgressView { | ||
| 138 | .visibility(this.isOpenDetail ? Visibility.None : Visibility.Visible) | 138 | .visibility(this.isOpenDetail ? Visibility.None : Visibility.Visible) |
| 139 | } | 139 | } |
| 140 | } | 140 | } |
| 141 | + .onDisAppear(() => clearTimeout(this.timer)) | ||
| 141 | } | 142 | } |
| 142 | } | 143 | } |
-
Please register or login to post a comment