fix: 修复歌单列表页面翻页类型问题

fixed: #398
This commit is contained in:
alger
2025-07-23 22:43:59 +08:00
parent 9b3019d04b
commit e489ab46b5

View File

@@ -154,7 +154,7 @@ const handleScroll = (e: any) => {
const { scrollTop, scrollHeight, clientHeight } = e.target;
// 距离底部100px时加载更多
if (scrollTop + clientHeight >= scrollHeight - 100 && !isLoadingMore.value && hasMore.value) {
loadList(route.query.type as string, true);
loadList(currentType.value, true);
}
};