diff --git a/packages/frontend/src/pages/song/[id]/info.astro b/packages/frontend/src/pages/song/[id]/info.astro index 7c1c859..20af910 100644 --- a/packages/frontend/src/pages/song/[id]/info.astro +++ b/packages/frontend/src/pages/song/[id]/info.astro @@ -92,15 +92,63 @@ interface Snapshot {
{JSON.stringify(videoInfo, null, 2)}+
ID | +{videoInfo?.id} | +
AID | +{videoInfo?.aid} | +
BVID | +{videoInfo?.bvid} | +
标题 | +{videoInfo?.title} | +
描述 | +{videoInfo?.description} | +
UID | +{videoInfo?.uid} | +
标签 | +{videoInfo?.tags} | +
发布时间 | +{videoInfo?.published_at ? format(new Date(videoInfo.published_at), 'yyyy-MM-dd HH:mm:ss', { locale: zhCN }) : '-'} | +
时长 (秒) | +{videoInfo?.duration} | +
创建时间 | +{videoInfo?.created_at ? format(new Date(videoInfo.created_at), 'yyyy-MM-dd HH:mm:ss', { locale: zhCN }) : '-'} | +
状态 | +{videoInfo?.status} | +
封面 URL | +{videoInfo?.cover_url ? videoInfo.cover_url : '-'} | +