diff --git a/src/locales/langs/en-us.ts b/src/locales/langs/en-us.ts index 310b7a0..104f787 100644 --- a/src/locales/langs/en-us.ts +++ b/src/locales/langs/en-us.ts @@ -67,6 +67,7 @@ const local: App.I18n.Schema = { confirmStop: 'Confirm Stop?', execute: 'Execute', batchList: 'Batch', + retryTaskList: 'RetryTaskList', copy: 'Copy', resume: 'Resume', pause: 'Pause', @@ -764,17 +765,19 @@ const local: App.I18n.Schema = { detail: 'Retry Task Detail', groupName: 'Group name', sceneName: 'Scene name', - retryStatus: 'Retry status', + taskStatus: 'Task status', taskType: 'Task type', idempotentId: 'Idempotent ID', bizNo: 'Business Number', createDt: 'Creation time', operationReason: 'Operation reason', + retryId: 'Retry id', form: { groupName: 'Please enter Group name', idempotentId: 'Please enter Idempotent ID', sceneName: 'Please enter Scene name', - bizNo: 'Please enter Business Number' + bizNo: 'Please enter Business Number', + retryId: 'Please enter retry id' }, addRetryTask: 'Add Retry Task', editRetryTask: 'Add Retry Task' diff --git a/src/locales/langs/zh-cn.ts b/src/locales/langs/zh-cn.ts index 6c5c5b5..f1010b3 100644 --- a/src/locales/langs/zh-cn.ts +++ b/src/locales/langs/zh-cn.ts @@ -68,6 +68,7 @@ const local: App.I18n.Schema = { execute: '执行', copy: '复制', batchList: '批次', + retryTaskList: '任务', resume: '恢复', pause: '暂停', finish: '完成', @@ -772,17 +773,19 @@ const local: App.I18n.Schema = { detail: '重试详情', groupName: '组名称', sceneName: '场景名称', - retryStatus: '状态', + taskStatus: '状态', taskType: '类型', idempotentId: '幂等ID', bizNo: '业务编号', createDt: '创建时间', operationReason: '操作原因', + retryId: '重试ID', form: { groupName: '请输入组名称', idempotentId: '请输入幂等id', sceneName: '请输入场景名称', - bizNo: '请输入业务编号' + bizNo: '请输入业务编号', + retryId: '请输入重试ID' }, addRetryTask: '新增重试任务', editRetryTask: '编辑重试任务' diff --git a/src/typings/api.d.ts b/src/typings/api.d.ts index c6f1cc1..1f3eac6 100644 --- a/src/typings/api.d.ts +++ b/src/typings/api.d.ts @@ -792,8 +792,6 @@ declare namespace Api { type RetryTaskUpdateStatusRequest = { /** id */ id: number; - /** 组名称 */ - groupName: string; /** 重试状态 0、重试中 1、重试完成 2、最大次数 3、暂停 */ retryStatus: RetryStatusType; }; @@ -804,7 +802,6 @@ declare namespace Api { }; type BatchDeleteRetryTaskVO = { - groupName: string; ids: string[]; }; diff --git a/src/typings/app.d.ts b/src/typings/app.d.ts index c61a167..01861fb 100644 --- a/src/typings/app.d.ts +++ b/src/typings/app.d.ts @@ -348,6 +348,7 @@ declare namespace App { confirmStop: string; execute: string; batchList: string; + retryTaskList: string; copy: string; resume: string; pause: string; @@ -972,17 +973,19 @@ declare namespace App { detail: string; groupName: string; sceneName: string; - retryStatus: string; + taskStatus: string; taskType: string; idempotentId: string; bizNo: string; createDt: string; operationReason: string; + retryId: string; form: { groupName: string; idempotentId: string; sceneName: string; bizNo: string; + retryId: string; }; addRetryTask: string; editRetryTask: string; diff --git a/src/views/retry/info/index.vue b/src/views/retry/info/index.vue index aeb5baf..c2c030c 100644 --- a/src/views/retry/info/index.vue +++ b/src/views/retry/info/index.vue @@ -1,5 +1,5 @@