feat(1.5.0-beta1): 1.重试任务列表增加更新时间 2.修复重试列表更新时间title

This commit is contained in:
xiaochaihu 2025-04-13 20:24:45 +08:00
parent 79af82aca8
commit a457eb9a51
5 changed files with 10 additions and 1 deletions

View File

@ -780,6 +780,7 @@ const local: App.I18n.Schema = {
idempotentId: 'Idempotent ID',
bizNo: 'Business Number',
createDt: 'Creation time',
updateDt: 'Update time',
operationReason: 'Operation reason',
retryId: 'Retry id',
form: {

View File

@ -788,6 +788,7 @@ const local: App.I18n.Schema = {
idempotentId: '幂等ID',
bizNo: '业务编号',
createDt: '创建时间',
updateDt: '更新时间',
operationReason: '操作原因',
retryId: '重试ID',
form: {

View File

@ -991,6 +991,7 @@ declare namespace App {
idempotentId: string;
bizNo: string;
createDt: string;
updateDt: string;
operationReason: string;
retryId: string;
form: {

View File

@ -163,7 +163,7 @@ const { columns, columnChecks, data, getData, loading, mobilePagination, searchP
},
{
key: 'updateDt',
title: $t('page.retryTask.createDt'),
title: $t('page.retryTask.updateDt'),
align: 'center',
minWidth: 120
},

View File

@ -158,6 +158,12 @@ const { columns, columnChecks, data, getData, loading, mobilePagination, searchP
align: 'center',
minWidth: 120
},
{
key: 'updateDt',
title: $t('page.retryTask.updateDt'),
align: 'center',
minWidth: 120
},
{
key: 'operate',
title: $t('common.operate'),