diff --git a/src/locales/langs/en-us.ts b/src/locales/langs/en-us.ts index b3be509..265d5d8 100644 --- a/src/locales/langs/en-us.ts +++ b/src/locales/langs/en-us.ts @@ -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: { diff --git a/src/locales/langs/zh-cn.ts b/src/locales/langs/zh-cn.ts index 0d09393..fecc90b 100644 --- a/src/locales/langs/zh-cn.ts +++ b/src/locales/langs/zh-cn.ts @@ -788,6 +788,7 @@ const local: App.I18n.Schema = { idempotentId: '幂等ID', bizNo: '业务编号', createDt: '创建时间', + updateDt: '更新时间', operationReason: '操作原因', retryId: '重试ID', form: { diff --git a/src/typings/app.d.ts b/src/typings/app.d.ts index 9ddce0a..aa9c259 100644 --- a/src/typings/app.d.ts +++ b/src/typings/app.d.ts @@ -991,6 +991,7 @@ declare namespace App { idempotentId: string; bizNo: string; createDt: string; + updateDt: string; operationReason: string; retryId: string; form: { diff --git a/src/views/retry/info/index.vue b/src/views/retry/info/index.vue index 6f78ca0..3f3425d 100644 --- a/src/views/retry/info/index.vue +++ b/src/views/retry/info/index.vue @@ -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 }, diff --git a/src/views/retry/task/index.vue b/src/views/retry/task/index.vue index 8b01aae..68ed944 100644 --- a/src/views/retry/task/index.vue +++ b/src/views/retry/task/index.vue @@ -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'),