feat: 增加无限滚动页面大小至100,以优化历史和收藏视图的加载体验

This commit is contained in:
alger
2025-04-12 12:37:08 +08:00
parent d7fea7f888
commit 09f8837fe4
2 changed files with 2 additions and 2 deletions

View File

@@ -217,7 +217,7 @@ const handleBatchDownload = async () => {
};
// 无限滚动相关
const pageSize = 16;
const pageSize = 100;
const currentPage = ref(1);
const props = defineProps({

View File

@@ -56,7 +56,7 @@ const displayList = ref<SongResult[]>([]);
const playerStore = usePlayerStore();
// 无限滚动相关配置
const pageSize = 20;
const pageSize = 100;
const currentPage = ref(1);
// 获取当前页的音乐详情