From 854bb0bb4ccd63fc8512bac948852bee378e4769 Mon Sep 17 00:00:00 2001 From: kongbeiwu Date: Sun, 28 Dec 2025 16:07:32 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BB=BB=E5=8A=A1=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/renderer/components/TaskList/Card.vue | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/src/renderer/components/TaskList/Card.vue b/src/renderer/components/TaskList/Card.vue index 5a32dca..f973994 100644 --- a/src/renderer/components/TaskList/Card.vue +++ b/src/renderer/components/TaskList/Card.vue @@ -2,7 +2,7 @@ * @Author: kongbeiwu lishaohua-520@qq.com * @Date: 2025-12-21 23:02:06 * @LastEditors: kongbeiwu lishaohua-520@qq.com - * @LastEditTime: 2025-12-22 00:34:30 + * @LastEditTime: 2025-12-28 11:09:00 * @FilePath: /project/zn-ai/src/renderer/components/TaskList/Card.vue * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE --> @@ -10,8 +10,11 @@
- -
{{ item.name }}
+ +
+ {{ item.name[0] }}
+
{{ item.name }}
{{ item.statusText }}
@@ -20,7 +23,8 @@
{{ item.des }}
- +
@@ -36,14 +40,17 @@ import { task } from '@constant/task' z-index: 1; transition: all .2s linear; } + .task .success { background-color: #E0FAEC; color: #1FC16B; } + .task .error { background-color: #FFEBEC; color: #FB3748; } + .task .warning { background-color: #FFF3EB; color: #FA7319; @@ -53,5 +60,4 @@ import { task } from '@constant/task' z-index: 2; box-shadow: 0 10px 20px rgba(0, 0, 0, .1); transform: translate3d(0, -2px, 0); -} - \ No newline at end of file +} \ No newline at end of file