feat: 添加歌单管理功能

- 新增歌单管理界面,支持添加和删除歌单
- 在MusicLibModel中添加musicCount字段显示歌曲数量
- 优化歌词编辑界面,添加加载状态提示
- 优化UI细节和路由视图加载时机

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-03-31 22:23:24 +08:00
co-authored by Copilot
parent 265ce0c6c7
commit b68de2e9bf
4 changed files with 79 additions and 11 deletions
+1
View File
@@ -16,6 +16,7 @@ export interface MusicLibModel {
_id: string
name: string // 歌单名称
path: string // 歌单文件路径
musicCount: number // 歌曲数量
}
export interface MusicLyricModel {