1
0
镜像自地址 https://github.com/ialley-workshop-open/uni-halo.git 已同步 2026-06-12 13:19:31 +08:00

fix: 修复首页加载异常问题

这个提交包含在:
小莫唐尼
2024-05-22 00:43:24 +08:00
父节点 f6069cad95
当前提交 512a4013b9
修改 16 个文件,包含 366 行新增62 行删除
+3 -2
查看文件
@@ -46,8 +46,9 @@
size: 10,
page: 0
},
result: null,
dataList: [],
hasNext:false,
isLoadMore: false,
loadMoreText: '加载中...'
};
@@ -65,7 +66,7 @@
this.fnGetData();
},
onReachBottom(e) {
if (this.result.hasNext) {
if (this.hasNext) {
this.queryParams.page += 1;
this.isLoadMore = true;
this.fnGetData();