feat: 展示通知 outbox 下次重试时间

- settings: 通知 outbox 表增加 nextAttemptAt 展示,便于观察重试器调度
This commit is contained in:
湛兮
2026-06-12 03:39:07 +08:00
parent cc72a24c7d
commit c3c0d69401
+5
View File
@@ -454,6 +454,11 @@ function applyAgentConfig(config: AgentConfigSummary) {
{{ row.attemptCount }}
</template>
</ElTableColumn>
<ElTableColumn label="下次重试" min-width="150">
<template #default="{ row }">
{{ formatCheckedAt(row.nextAttemptAt || '') }}
</template>
</ElTableColumn>
<ElTableColumn label="错误摘要" min-width="240">
<template #default="{ row }">
<span class="outbox-error">{{ row.lastError || '-' }}</span>