feat: 更新歌手数据加载逻辑,首页添加周杰伦歌手信息常驻

This commit is contained in:
alger
2025-04-25 23:10:02 +08:00
parent bbc1bb7436
commit 30695149d6
2 changed files with 42 additions and 14 deletions
+3 -1
View File
@@ -4,7 +4,7 @@ export interface IHotSinger {
artists: Artist[];
}
interface Artist {
export interface Artist {
name: string;
id: number;
picId: number;
@@ -29,4 +29,6 @@ interface Artist {
identifyTag?: any;
alg?: any;
fansCount?: any;
cover?: string;
avatar?: string;
}