feat: add log page status filter

This commit is contained in:
engigu
2026-02-28 08:40:14 +08:00
parent 22e3e89ba0
commit dd8a887399
4 changed files with 43 additions and 8 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ const statItems = [
{ key: 'envs', label: '环境变量', icon: Variable, route: '/environments' },
{ key: 'logs', label: '日志总数', icon: ScrollText, route: '/history' },
{ key: 'scheduled', label: '调度注册', icon: Clock, route: '/tasks' },
{ key: 'running', label: '正在运行', icon: Play, route: '/tasks' },
{ key: 'running', label: '正在运行', icon: Play, route: '/history?status=running' },
]
const isDark = ref(document.documentElement.classList.contains('dark'))