🐞 fix: 修复歌词页面与底栏冲突问题(#26) 修复搜索歌曲列表页面显示错误问题 (#33)

closed #26   #33
This commit is contained in:
alger
2025-01-03 22:03:26 +08:00
parent ba64631a17
commit 1dc7d0ceca
7 changed files with 39 additions and 12 deletions
+4 -3
View File
@@ -18,7 +18,7 @@
</n-scrollbar>
</div>
<!-- 歌单列表 -->
<n-scrollbar class="recommend" :size="100" @scroll="handleScroll">
<n-scrollbar class="recommend" style="height: calc(100% - 55px)" :size="100" @scroll="handleScroll">
<div v-loading="loading" class="recommend-list">
<div
v-for="(item, index) in recommendList"
@@ -218,8 +218,6 @@ watch(
}
.recommend {
@apply w-full h-full;
&-title {
@apply text-lg font-bold pb-2;
@apply text-gray-900 dark:text-white;
@@ -325,5 +323,8 @@ watch(
.play-list-type {
@apply mx-0 w-full;
}
.categories-wrapper {
@apply pl-4;
}
}
</style>