diff --git a/src/components/AlbumDetailDialog.vue b/src/components/AlbumDetailDialog.vue new file mode 100644 index 0000000..3c157a9 --- /dev/null +++ b/src/components/AlbumDetailDialog.vue @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + {{ album?.name }} + {{ artistsOrganize(album?.artistes ?? []) }} + {{ album?.intro }} + + + + + + + + + + 播放专辑 + + + { + playTheAlbum() + playQueue.shuffleCurrent = true + playQueue.playMode.shuffle = true + }"> + + + + + + + + + + 共 {{ album?.songs?.length ?? '?' }} 首曲目 + + + + + + + + + + 加载中... + + + + + \ No newline at end of file diff --git a/src/pages/Home.vue b/src/pages/Home.vue index 9116e5f..b25279e 100644 --- a/src/pages/Home.vue +++ b/src/pages/Home.vue @@ -1,9 +1,13 @@