feat(web): 增加调度时间点展示

This commit is contained in:
2024-01-15 15:45:17 +08:00
parent 26e65f2a81
commit 2b829519d1
6 changed files with 242 additions and 168 deletions

View File

@@ -409,6 +409,26 @@ function overviewTab() {
}
}
]
},
{type: 'divider'},
{
type: 'service',
api: '${base}/overview/schedule_times',
interval: 60000,
silentPolling: true,
body: [
'调度时间点',
{
type: 'each',
name: 'items',
className: 'grid',
items: {
type: 'tag',
color: '${color}',
label: '${DATETOSTR(TIMESTAMP(time, \'x\'), \'HH:mm:ss\')}'
}
}
]
}
]
}