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-07-26 14:39:22 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
affc24a3ddead065ae730e0ea91f4d295d694fec
affc24a3
1 parent
eb8782ff
fix: 断网,频道信息流无网络默认缺省页,换肤模式下展示和安卓不一致
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
sight_harmony/features/wdComponent/src/main/ets/components/page/PageComponent.ets
sight_harmony/features/wdComponent/src/main/ets/components/page/PageComponent.ets
View file @
affc24a
...
...
@@ -57,6 +57,12 @@ export struct PageComponent {
this.getData()
}
})
.backgroundColor(Color.White)
.margin({
left: 6,
right: 6
})
.borderRadius(4)
.grayscale(this.isMourning ? 1 : 0)
}
}
...
...
@@ -110,7 +116,7 @@ export struct PageComponent {
compIndex: compIndex,
pageId: this.pageId
}
)
;
)
}
}
.grayscale(this.isMourning && compIndex < 8 ? 1 : 0)
...
...
@@ -147,7 +153,14 @@ export struct PageComponent {
@Builder
LoadingLayout() {
channelSkeleton().grayscale(this.isMourning ? 1 : 0)
channelSkeleton()
.margin({
left: 6,
right: 6
})
.borderRadius(4)
.backgroundColor(Color.White)
.grayscale(this.isMourning ? 1 : 0)
// CustomRefreshLoadLayout({
// refreshBean: new RefreshLayoutBean(true,
// $r('app.media.ic_pull_up_load'), $r('app.string.pull_up_load_text'), this.pageModel.pullDownRefreshHeight)
...
...
Please
register
or
login
to post a comment