From cb6043bcd277158b1ef59c2ae8dbf9628a30794d Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Fri, 18 Apr 2025 19:35:57 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E5=BA=94=E7=94=A8?= =?UTF-8?q?=E9=85=8D=E7=BD=AE-=E7=8E=AF=E5=A2=83=E5=B1=82=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E6=96=87=E4=BB=B6=E9=80=82=E9=85=8D=E5=8F=98=E9=87=8F?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=AE=A1=E8=AE=A1=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1400864579747840]应用配置-环境层配置文件适配变量增加审计功能 http://192.168.0.96:8090/demo/rdm.html#/story-detail/939050947543040/939050947543042/1400864579747840 --- src/resources/assets/languages/page/en.json | 3 ++- src/resources/assets/languages/page/zh.json | 3 ++- .../application-config/config/env/env-autoconfig-edit.vue | 2 +- .../config/env/env-autoconfig-instance-difference-edit.vue | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/resources/assets/languages/page/en.json b/src/resources/assets/languages/page/en.json index c325702e0..700c5718d 100644 --- a/src/resources/assets/languages/page/en.json +++ b/src/resources/assets/languages/page/en.json @@ -1064,5 +1064,6 @@ "rubberband": "Frame Select", "actualpath": "actual path", "currentjob": "Current Job", - "incompleteinformation": "incomplete information" + "incompleteinformation": "incomplete information", + "requiredparameterhasnullvalue": "The required parameter field has a null value" } \ No newline at end of file diff --git a/src/resources/assets/languages/page/zh.json b/src/resources/assets/languages/page/zh.json index abb4bc9ef..0afc7d675 100644 --- a/src/resources/assets/languages/page/zh.json +++ b/src/resources/assets/languages/page/zh.json @@ -1066,5 +1066,6 @@ "rubberband": "框选", "actualpath": "实际路径", "currentjob": "当前作业", - "incompleteinformation": "信息不完整" + "incompleteinformation": "信息不完整", + "requiredparameterhasnullvalue": "必填参数项存在空值" } \ No newline at end of file diff --git a/src/views/pages/deploy/application-config/config/env/env-autoconfig-edit.vue b/src/views/pages/deploy/application-config/config/env/env-autoconfig-edit.vue index 58b53b782..7480f5a96 100644 --- a/src/views/pages/deploy/application-config/config/env/env-autoconfig-edit.vue +++ b/src/views/pages/deploy/application-config/config/env/env-autoconfig-edit.vue @@ -197,7 +197,7 @@ export default { if (!this.validKeyRepeat() || !this.validValueIsEmpty()) { this.$Notice.warning({ title: this.$t('page.tip'), - desc: this.$t('page.incompleteinformation') + desc: this.$t('page.requiredparameterhasnullvalue') }); return false; } diff --git a/src/views/pages/deploy/application-config/config/env/env-autoconfig-instance-difference-edit.vue b/src/views/pages/deploy/application-config/config/env/env-autoconfig-instance-difference-edit.vue index 49aec2e96..475f7258a 100644 --- a/src/views/pages/deploy/application-config/config/env/env-autoconfig-instance-difference-edit.vue +++ b/src/views/pages/deploy/application-config/config/env/env-autoconfig-instance-difference-edit.vue @@ -186,7 +186,7 @@ export default { if ((form && !form.valid()) || !this.isRepeat() || !this.validValueIsEmpty()) { this.$Notice.warning({ title: this.$t('page.tip'), - desc: this.$t('page.incompleteinformation') + desc: this.$t('page.requiredparameterhasnullvalue') }); return false; } -- Gitee