mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-18 06:07:48 +00:00
fix: 歌手页 & 歌手页链接 (#1434)
* fix: 禁止打开id为0的歌手页 * feat: 当歌手没有专辑时,不在歌手页中显示专辑 & 热门歌曲默认禁用滚动条 * fix * fix: 根据建议进行修改
This commit is contained in:
parent
36603dc3a0
commit
7ac084f73d
2 changed files with 15 additions and 11 deletions
|
|
@ -113,7 +113,7 @@ const Artist = () => {
|
|||
<div className='mb-6 text-2xl font-semibold dark:text-white'>
|
||||
热门歌曲
|
||||
</div>
|
||||
<div className='overflow-scroll rounded-xl '>
|
||||
<div className='rounded-xl'>
|
||||
<TracksGrid
|
||||
tracks={artist?.hotSongs.slice(0, 10) ?? []}
|
||||
isSkeleton={isLoading}
|
||||
|
|
@ -123,13 +123,17 @@ const Artist = () => {
|
|||
</div>
|
||||
|
||||
{/* Albums */}
|
||||
<div className='mt-20 px-2'>
|
||||
<div className='mb-6 text-2xl font-semibold dark:text-white'>专辑</div>
|
||||
<CoverRow
|
||||
albums={albums.slice(0, 10)}
|
||||
subtitle={Subtitle.TYPE_RELEASE_YEAR}
|
||||
/>
|
||||
</div>
|
||||
{albums.length !== 0 && (
|
||||
<div className='mt-20 px-2'>
|
||||
<div className='mb-6 text-2xl font-semibold dark:text-white'>
|
||||
专辑
|
||||
</div>
|
||||
<CoverRow
|
||||
albums={albums.slice(0, 10)}
|
||||
subtitle={Subtitle.TYPE_RELEASE_YEAR}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Singles/EP */}
|
||||
<div className='mt-16 px-2'>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue