xugenyuan

ref |> 横屏直播时,直播tab标题与背景色重叠,无法露出

如果当前时沉浸式,其他TAB全部设置 白色50%

http://192.168.1.3:8080/zentao/bug-view-20644.html

Signed-off-by: xugenyuan <xugenyuan@wondertek.com.cn>
... ... @@ -87,8 +87,11 @@ export struct VideoChannelPage {
if (item.channelStyle === 1) {
return this.currentTopNavSelectedIndex === index ? Color.White : this.tabSelectedColor(false)
} else {
return this.tabSelectedColor(this.currentTopNavSelectedIndex ===
index)
// 如果当前时沉浸式,其他TAB全部设置 白色50%
if (this.isImmerseChannel() && this.currentTopNavSelectedIndex != index) {
return "#50FFFFFF"
}
return this.tabSelectedColor(this.currentTopNavSelectedIndex === index)
}
}
... ...