feat(sj_1.0.0): 完成重试日志接入

This commit is contained in:
opensnail 2024-04-29 18:20:38 +08:00
parent cf7658fad7
commit a4b38c85a5
4 changed files with 12 additions and 0 deletions

View File

@ -828,6 +828,7 @@ const local: App.I18n.Schema = {
},
retryLog: {
title: 'RetryLog List',
detail: 'Retry Log Detail',
UniqueId: 'UniqueId',
groupName: 'Group name',
sceneName: 'Scene name',

View File

@ -824,6 +824,7 @@ const local: App.I18n.Schema = {
},
retryLog: {
title: 'RetryLog 列表',
detail: '重试日志详情',
UniqueId: 'UniqueId',
groupName: '组名称',
sceneName: '场景名称',

View File

@ -976,6 +976,7 @@ declare namespace App {
};
retryLog: {
title: string;
detail: string;
UniqueId: string;
groupName: string;
sceneName: string;

View File

@ -60,6 +60,15 @@ watch(
{{ rowData?.idempotentId }}
</NDescriptionsItem>
</NDescriptions>
<NDescriptions label-placement="top" bordered :column="6">
<NDescriptionsItem :label="$t('page.retryTask.executorName')">{{ rowData?.executorName }}</NDescriptionsItem>
</NDescriptions>
<NDescriptions label-placement="top" bordered :column="6">
<NDescriptionsItem :label="$t('page.retryTask.argsStr')">{{ rowData?.argsStr }}</NDescriptionsItem>
</NDescriptions>
<NDescriptions label-placement="top" bordered :column="6">
<NDescriptionsItem :label="$t('page.retryLog.createDt')">{{ rowData?.createDt }}</NDescriptionsItem>
</NDescriptions>
</OperateDrawer>
</template>