feat(1.5.0-beta1): 1.重试任务列表增加更新时间 2.修复重试列表更新时间title
This commit is contained in:
parent
79af82aca8
commit
a457eb9a51
@ -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: {
|
||||
|
@ -788,6 +788,7 @@ const local: App.I18n.Schema = {
|
||||
idempotentId: '幂等ID',
|
||||
bizNo: '业务编号',
|
||||
createDt: '创建时间',
|
||||
updateDt: '更新时间',
|
||||
operationReason: '操作原因',
|
||||
retryId: '重试ID',
|
||||
form: {
|
||||
|
1
src/typings/app.d.ts
vendored
1
src/typings/app.d.ts
vendored
@ -991,6 +991,7 @@ declare namespace App {
|
||||
idempotentId: string;
|
||||
bizNo: string;
|
||||
createDt: string;
|
||||
updateDt: string;
|
||||
operationReason: string;
|
||||
retryId: string;
|
||||
form: {
|
||||
|
@ -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
|
||||
},
|
||||
|
@ -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'),
|
||||
|
Loading…
Reference in New Issue
Block a user