From 95a398da23182fedc9a6cc89566aa5ee71b457b0 Mon Sep 17 00:00:00 2001 From: lyswhut Date: Mon, 14 Nov 2022 21:26:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=92=AD=E6=94=BE=E7=8A=B6?= =?UTF-8?q?=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/renderer/views/Download/index.vue | 30 ++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/src/renderer/views/Download/index.vue b/src/renderer/views/Download/index.vue index 2e7361e5..13f8bb4c 100644 --- a/src/renderer/views/Download/index.vue +++ b/src/renderer/views/Download/index.vue @@ -28,7 +28,14 @@ :class="[{[$style.active]: playTaskId == item.id }, { selected: rightClickSelectedIndex == index }, { active: selectedList.includes(item) }]" @click="handleListItemClick($event, index)" @contextmenu="handleListItemRightClick($event, index)" > -
{{ index + 1 }}
+
+
+ + + +
+
{{ index + 1 }}
+
{{ getName(item) }}
@@ -229,6 +236,27 @@ export default { } } } +.num { + height: 100%; + display: flex; + align-items: center; + justify-content: center; + position: relative; +} +.playIcon { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + display: flex; + align-items: center; + justify-content: center; + + color: var(--color-button-font); + opacity: .7; +} + .content { min-height: 0; font-size: 14px;