From a457eb9a51df51e4241a097930064ca20d95e906 Mon Sep 17 00:00:00 2001 From: xiaochaihu <2521303550@qq.com> Date: Sun, 13 Apr 2025 20:24:45 +0800 Subject: [PATCH] =?UTF-8?q?feat(1.5.0-beta1):=201.=E9=87=8D=E8=AF=95?= =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E5=88=97=E8=A1=A8=E5=A2=9E=E5=8A=A0=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E6=97=B6=E9=97=B4=202.=E4=BF=AE=E5=A4=8D=E9=87=8D?= =?UTF-8?q?=E8=AF=95=E5=88=97=E8=A1=A8=E6=9B=B4=E6=96=B0=E6=97=B6=E9=97=B4?= =?UTF-8?q?title?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/langs/en-us.ts | 1 + src/locales/langs/zh-cn.ts | 1 + src/typings/app.d.ts | 1 + src/views/retry/info/index.vue | 2 +- src/views/retry/task/index.vue | 6 ++++++ 5 files changed, 10 insertions(+), 1 deletion(-) 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'),