优化:已知问题

This commit is contained in:
2025-07-22 13:27:07 +08:00
parent 2b5ff62ff0
commit 505afb8c0d
29 changed files with 2144 additions and 6 deletions

View File

@@ -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(() => {