diff --git a/bklog/web/src/language/lang/en/content.ts b/bklog/web/src/language/lang/en/content.ts index e1077c1841..f0c31a88a8 100644 --- a/bklog/web/src/language/lang/en/content.ts +++ b/bklog/web/src/language/lang/en/content.ts @@ -967,4 +967,6 @@ export default { '超出集群最大可保存天数,当前最大可保存{n}天': 'The maximum number of days can be preserved by the cluster, and the current maximum can be saved {n}', 前往配置: 'Go to Configuration', + '任务提交成功,系统处理后将通过邮件通知,请留意': + 'The task is submitted successfully and the system will notify you via email after processing. Please pay attention.', }; diff --git a/bklog/web/src/views/retrieve-v2/result-comp/export-log.vue b/bklog/web/src/views/retrieve-v2/result-comp/export-log.vue index d758b66487..080407158c 100644 --- a/bklog/web/src/views/retrieve-v2/result-comp/export-log.vue +++ b/bklog/web/src/views/retrieve-v2/result-comp/export-log.vue @@ -380,7 +380,7 @@ if (res.result) { this.$bkMessage({ theme: 'success', - message: res.data.prompt, + message: this.$t('任务提交成功,系统处理后将通过邮件通知,请留意'), }); } }) @@ -447,7 +447,7 @@ if (res.result) { this.$bkMessage({ theme: 'success', - message: res.data.prompt, + message: this.$t('任务提交成功,系统处理后将通过邮件通知,请留意'), }); } }) diff --git a/bklog/web/src/views/retrieve/result-comp/export-log.vue b/bklog/web/src/views/retrieve/result-comp/export-log.vue index 173652e946..cc0d3f5e9f 100644 --- a/bklog/web/src/views/retrieve/result-comp/export-log.vue +++ b/bklog/web/src/views/retrieve/result-comp/export-log.vue @@ -380,7 +380,7 @@ if (res.result) { this.$bkMessage({ theme: 'success', - message: res.data.prompt, + message: this.$t('任务提交成功,系统处理后将通过邮件通知,请留意'), }); } }) @@ -447,7 +447,7 @@ if (res.result) { this.$bkMessage({ theme: 'success', - message: res.data.prompt, + message: this.$t('任务提交成功,系统处理后将通过邮件通知,请留意'), }); } })