首页plus

This commit is contained in:
2026-07-07 17:28:58 +08:00
parent ab7bb9fc42
commit 9f9f7eb376
3 changed files with 44 additions and 16 deletions
-10
View File
@@ -39,8 +39,6 @@
<div class="item-body">
<div class="item-title">{{ item.title }}</div>
<div v-if="item.status === 'executing'" class="status-badge status-running">执行中</div>
<div v-if="item.status === 'completed'" class="status-badge status-done">执行完成</div>
<div v-if="item.status === 'failed'" class="status-badge status-failed">执行失败</div>
<div class="item-time">{{ item.time }}</div>
</div>
<button class="item-del-btn" @click.stop="handleDeleteHistory(item.id)">
@@ -486,15 +484,7 @@ const handleDeleteNode = (data: TreeNode) => emit('delete-node', data);
animation: pulse 1.5s ease-in-out infinite;
}
.status-done {
background: #d1fae5;
color: #059669;
}
.status-failed {
background: #fee2e2;
color: #dc2626;
}
@keyframes pulse {
0%, 100% { opacity: 1; }