feat(任务调度): 改进任务执行日志记录和UI展示

refactor(前端): 重构任务管理界面为卡片式布局
fix(后端): 修复任务日志记录中的job_id类型问题
perf(调度器): 优化立即执行任务的日志记录机制
style(前端): 调整多个页面的高度计算方式
This commit is contained in:
zhangtao
2026-03-02 00:25:14 +08:00
parent 83289f6025
commit 4b9ebfd4ed
7 changed files with 778 additions and 733 deletions
+5 -5
View File
@@ -142,8 +142,8 @@
:loading="loading"
:data="cacheNames"
row-key="cache_name"
height="calc(100vh - 280px)"
max-height="calc(100vh - 280px)"
height="calc(100vh - 290px)"
max-height="calc(100vh - 290px)"
border
>
<template #empty>
@@ -216,8 +216,8 @@
<el-table
:loading="subLoading"
:data="cacheKeys.map((key) => ({ cacheKey: key }))"
height="calc(100vh - 280px)"
max-height="calc(100vh - 280px)"
height="calc(100vh - 290px)"
max-height="calc(100vh - 290px)"
row-key="cacheKey"
border
>
@@ -539,6 +539,6 @@ onUnmounted(() => {
<style scoped lang="scss">
.chart-container {
height: calc(100vh - 480px);
height: calc(100vh - 490px);
}
</style>