Skip to content

Commit e489ab4

Browse files
committed
fix: 修复歌单列表页面翻页类型问题
fixed: #398
1 parent 9b3019d commit e489ab4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderer/views/list/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ const handleScroll = (e: any) => {
154154
const { scrollTop, scrollHeight, clientHeight } = e.target;
155155
// 距离底部100px时加载更多
156156
if (scrollTop + clientHeight >= scrollHeight - 100 && !isLoadingMore.value && hasMore.value) {
157-
loadList(route.query.type as string, true);
157+
loadList(currentType.value, true);
158158
}
159159
};
160160

0 commit comments

Comments
 (0)