Toggle navigation
Toggle navigation
This project
Loading...
Sign in
developOne
/
harmonyPool
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
陈剑华
2024-08-23 09:21:24 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
feab417f3d4cde7e97d65ca29f58bce36d70b536
feab417f
2 parents
c38b7333
61609d11
Merge remote-tracking branch 'origin/main'
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
2 deletions
sight_harmony/features/wdComponent/src/main/resources/rawfile/apph5/js/index.js
sight_harmony/features/wdDetailPlayLive/src/main/ets/widgets/vertical/PlayerInfoComponent.ets
sight_harmony/features/wdDetailPlayLive/src/main/ets/widgets/vertical/PlayerUIComponent.ets
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/view/PlayerProgressView.ets
sight_harmony/features/wdComponent/src/main/resources/rawfile/apph5/js/index.js
View file @
feab417
...
...
@@ -645,11 +645,13 @@ const app = Vue.createApp({
if
(
state
.
isLogined
==
1
)
{
// 已登录
if
(
window
.
config
.
VUE_BASE_NODE
===
'dev'
)
{
showButton
.
value
=
true
showClook
.
value
=
true
}
else
{
clookStatus
(
true
)
// 查"关注"状态 , 更新按钮上的文字
}
}
else
{
showButton
.
value
=
true
showClook
.
value
=
true
}
}
...
...
sight_harmony/features/wdDetailPlayLive/src/main/ets/widgets/vertical/PlayerInfoComponent.ets
View file @
feab417
...
...
@@ -20,7 +20,7 @@ export struct PlayerInfoComponent {
PlayerUIComponent({ playerController: this.playerController })
.margin({
// bottom: this.bottomSafeHeight + 'px',
top: this.topSafeHeight + 'px'
top:
this.isFullScreen ? 0 :
this.topSafeHeight + 'px'
})
}
.cachedCount(2)
...
...
sight_harmony/features/wdDetailPlayLive/src/main/ets/widgets/vertical/PlayerUIComponent.ets
View file @
feab417
...
...
@@ -59,7 +59,7 @@ export struct PlayerUIComponent {
}
this.isFullScreen = true
})
.visibility(
this.isSmall
? Visibility.Visible : Visibility.Hidden)
.visibility(
!this.isFullScreen
? Visibility.Visible : Visibility.Hidden)
.margin({ top: 301}) // 195 + 211 - 105
.position({ x: '96.8%' })
.markAnchor({ x: '96.8%' })
...
...
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/view/PlayerProgressView.ets
View file @
feab417
...
...
@@ -138,5 +138,6 @@ export struct PlayerProgressView {
.visibility(this.isOpenDetail ? Visibility.None : Visibility.Visible)
}
}
.onDisAppear(() => clearTimeout(this.timer))
}
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment