feat(sj_1.0.0): 完成重试日志接入
This commit is contained in:
parent
cf7658fad7
commit
a4b38c85a5
@ -828,6 +828,7 @@ const local: App.I18n.Schema = {
|
|||||||
},
|
},
|
||||||
retryLog: {
|
retryLog: {
|
||||||
title: 'RetryLog List',
|
title: 'RetryLog List',
|
||||||
|
detail: 'Retry Log Detail',
|
||||||
UniqueId: 'UniqueId',
|
UniqueId: 'UniqueId',
|
||||||
groupName: 'Group name',
|
groupName: 'Group name',
|
||||||
sceneName: 'Scene name',
|
sceneName: 'Scene name',
|
||||||
|
@ -824,6 +824,7 @@ const local: App.I18n.Schema = {
|
|||||||
},
|
},
|
||||||
retryLog: {
|
retryLog: {
|
||||||
title: 'RetryLog 列表',
|
title: 'RetryLog 列表',
|
||||||
|
detail: '重试日志详情',
|
||||||
UniqueId: 'UniqueId',
|
UniqueId: 'UniqueId',
|
||||||
groupName: '组名称',
|
groupName: '组名称',
|
||||||
sceneName: '场景名称',
|
sceneName: '场景名称',
|
||||||
|
1
src/typings/app.d.ts
vendored
1
src/typings/app.d.ts
vendored
@ -976,6 +976,7 @@ declare namespace App {
|
|||||||
};
|
};
|
||||||
retryLog: {
|
retryLog: {
|
||||||
title: string;
|
title: string;
|
||||||
|
detail: string;
|
||||||
UniqueId: string;
|
UniqueId: string;
|
||||||
groupName: string;
|
groupName: string;
|
||||||
sceneName: string;
|
sceneName: string;
|
||||||
|
@ -60,6 +60,15 @@ watch(
|
|||||||
{{ rowData?.idempotentId }}
|
{{ rowData?.idempotentId }}
|
||||||
</NDescriptionsItem>
|
</NDescriptionsItem>
|
||||||
</NDescriptions>
|
</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>
|
</OperateDrawer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user