diff --git a/src/api/types.ts b/src/api/types.ts
index 98f8c0e0..e0d71750 100644
--- a/src/api/types.ts
+++ b/src/api/types.ts
@@ -394,6 +394,8 @@ export interface DownloadingInfo {
userid?: string
// 下载用户名称
username?: string
+ // 剩余时间
+ left_time?: string
}
// 缺失剧集信息
diff --git a/src/components/cards/DownloadingCard.vue b/src/components/cards/DownloadingCard.vue
index 4df9188d..6a098fa6 100644
--- a/src/components/cards/DownloadingCard.vue
+++ b/src/components/cards/DownloadingCard.vue
@@ -1,6 +1,7 @@
-
+
-
+
-
+
{{ props.info?.media.title || props.info?.name }}
- {{ props.info?.media.episode ? `${props.info?.media.season} ${props.info?.media.episode}` : props.info?.season_episode }}
+ {{
+ props.info?.media.episode
+ ? `${props.info?.media.season} ${props.info?.media.episode}`
+ : props.info?.season_episode
+ }}
-
+
{{ props.info?.title }}
-
+
{{ getSpeedText() }}
-
+
-
-
+
+