feat: 为音乐类型添加图标支持

This commit is contained in:
jxxghp
2026-08-09 11:56:54 +08:00
parent fe442fda4b
commit 4b70b98ffc

View File

@@ -652,6 +652,7 @@ async function refreshDataAfterOperation(mobileSelection: TransferHistory[] = []
function getIcon(type: string) {
if (type === '电影') return 'mdi-movie'
else if (type === '电视剧') return 'mdi-television-classic'
else if (type === '音乐') return 'mdi-album'
else return 'mdi-help-circle'
}