yangchenggong1_wd

fix:bug[18503] 我的预约列表,底部缺少已加载全部内容提示

... ... @@ -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)
... ...
... ... @@ -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
}
... ...