优化:已知问题
This commit is contained in:
@@ -62,8 +62,13 @@ const List = () => {
|
||||
const reloadMore = async () => {
|
||||
const nextPage = page + 1;
|
||||
console.log('honor/list 加载更多 - 下一页:', nextPage);
|
||||
Taro.showLoading({
|
||||
title: '加载中...',
|
||||
})
|
||||
setPage(nextPage);
|
||||
reload(nextPage).then();
|
||||
reload(nextPage).then().finally(() => {
|
||||
Taro.hideLoading();
|
||||
});
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
|
||||
Reference in New Issue
Block a user