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
yangchenggong1_wd
2024-06-03 15:36:44 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8ee9bb252c470ffb4bf5099e763e3345f47a1bdf
8ee9bb25
1 parent
cbda2ce8
fix:bug[18503] 我的预约列表,底部缺少已加载全部内容提示
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletions
sight_harmony/features/wdComponent/src/main/ets/components/mine/MinePageUserSimpleInfoUI.ets
sight_harmony/features/wdComponent/src/main/ets/components/mine/appointment/AppointmentListUI.ets
sight_harmony/features/wdComponent/src/main/ets/components/mine/MinePageUserSimpleInfoUI.ets
View file @
8ee9bb2
...
...
@@ -83,7 +83,7 @@ export default struct MinePageUserSimpleInfoUI {
.textAlign(TextAlign.Center)
.fontColor($r('app.color.white'))
.fontSize(`${this.calcHeight(19)}lpx`)
.width(`${this.calcHeight(50)}lpx`)
.width(
this.levelId>9?`${this.calcHeight(69)}lpx`:
`${this.calcHeight(50)}lpx`)
.height(`${this.calcHeight(29)}lpx`)
}.margin({top:'`${this.calcHeight(15)}lpx`'})
}.alignItems(HorizontalAlign.Start)
...
...
sight_harmony/features/wdComponent/src/main/ets/components/mine/appointment/AppointmentListUI.ets
View file @
8ee9bb2
...
...
@@ -159,6 +159,9 @@ export struct AppointmentListUI {
this.count = this.data.totalCount()
if (this.data.totalCount() < value.totalCount) {
this.curPageNum++
if(this.count < 5){
this.getNewPageData()
}
} else {
this.hasMore = false
}
...
...
Please
register
or
login
to post a comment