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-06-06 14:37:41 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
b6af848e26767c24b7ac50194e2781c4ec9a1c5c
b6af848e
2 parents
021e8a29
36970067
Merge remote-tracking branch 'origin/main'
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
sight_harmony/features/wdComponent/src/main/ets/pages/SearchCreatorPage.ets
sight_harmony/features/wdComponent/src/main/ets/pages/SearchCreatorPage.ets
View file @
b6af848
...
...
@@ -26,6 +26,8 @@ struct SearchCreatorPage {
@State isLoading: boolean = false
@State hasMore: boolean = true
curPageNum: number = 1;
@State topSafeHeight: number = AppStorage.get<number>('topSafeHeight') || 0
@State bottomSafeHeight: number = AppStorage.get<number>('bottomSafeHeight') || 0
onPageShow() {
this.keyword = this.params?.pageID;
...
...
@@ -154,6 +156,7 @@ struct SearchCreatorPage {
}
build() {
Column(){
Column() {
CustomTitleUI({ titleName: "全部结果" })
Divider()
...
...
@@ -200,5 +203,10 @@ struct SearchCreatorPage {
}
.width('100%')
.height('100%')
}.width("100%")
.height("100%")
.backgroundColor($r('app.color.color_transparent'))
.padding({top:px2vp(this.topSafeHeight)})
}
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment