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', idempotentId: 'Idempotent ID',
bizNo: 'Business Number', bizNo: 'Business Number',
createDt: 'Creation time', createDt: 'Creation time',
updateDt: 'Update time',
operationReason: 'Operation reason', operationReason: 'Operation reason',
retryId: 'Retry id', retryId: 'Retry id',
form: { form: {

View File

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

View File

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

View File

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

View File

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