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-09-27 10:05:19 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3dcbb20bc6d628abb54f1054d42af9bd04e3d419
3dcbb20b
1 parent
dc6832db
fix: 视频详情页获取内容失败,请重试 文字颜色与安卓不一致,有点暗
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
sight_harmony/features/wdComponent/src/main/ets/components/view/EmptyComponent.ets
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/pages/DetailVideoListPage.ets
sight_harmony/features/wdComponent/src/main/ets/components/view/EmptyComponent.ets
View file @
3dcbb20
...
...
@@ -159,7 +159,7 @@ export struct EmptyComponent {
.opacity(this.TEXT_OPACITY)
.margin({ top: this.EMPTY_TIP_TEXT_MARGIN_TOP })
// .fontColor(this.emptyType === WDViewDefaultType.WDViewDefaultType_NoComment1 ? '#999999' : '#666666')
.fontColor('#666666')
.fontColor(
this.isBlack ? '#FFFFFF' :
'#666666')
.onClick((event: ClickEvent) => {
Logger.info(TAG, `noProgrammeData onClick event?.source: ${event.source}`);
})
...
...
sight_harmony/features/wdDetailPlayShortVideo/src/main/ets/pages/DetailVideoListPage.ets
View file @
3dcbb20
...
...
@@ -395,7 +395,7 @@ export struct DetailVideoListPage {
})
} else if (this.isOffLine) {
EmptyComponent({
emptyType: 15, emptyButton: true, retry: () => {
emptyType: 15, emptyButton: true,
isBlack: true,
retry: () => {
this.getDetail()
}
})
...
...
Please
register
or
login
to post a comment