From f924a6f4d13f94c18fedc54ded7c459565447418 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Mon, 18 Nov 2024 09:12:13 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E4=B8=93=E4=B8=9A=E7=89=88=E5=9B=BD?= =?UTF-8?q?=E9=99=85=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-backend/src/main/resources/application.yml | 2 +- core/core-frontend/src/locales/tw.ts | 1 + core/core-frontend/src/locales/zh-CN.ts | 1 + core/core-frontend/src/views/about/index.vue | 2 ++ 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/core/core-backend/src/main/resources/application.yml b/core/core-backend/src/main/resources/application.yml index 95bb913641..558a46a35b 100644 --- a/core/core-backend/src/main/resources/application.yml +++ b/core/core-backend/src/main/resources/application.yml @@ -47,7 +47,7 @@ quartz: dataease: version: '@project.version@' xpack-front-distributed: true - origin-list: http://127.0.0.1:9080 + origin-list: http://localhost:8080 apisix-api: domain: http://127.0.0.1:9180 key: edd1c9f034335f136f87ad84b625c8f1 diff --git a/core/core-frontend/src/locales/tw.ts b/core/core-frontend/src/locales/tw.ts index c4d69e8ce3..74a10b1621 100644 --- a/core/core-frontend/src/locales/tw.ts +++ b/core/core-frontend/src/locales/tw.ts @@ -2235,6 +2235,7 @@ export default { version_num: '版本號', standard: '社區版', enterprise: '企業版', + Professional: '專業版', Embedded: '嵌入式版', support: '獲取技術支持', update_success: '更新成功', diff --git a/core/core-frontend/src/locales/zh-CN.ts b/core/core-frontend/src/locales/zh-CN.ts index c01948551e..58f6b8d65c 100644 --- a/core/core-frontend/src/locales/zh-CN.ts +++ b/core/core-frontend/src/locales/zh-CN.ts @@ -2242,6 +2242,7 @@ export default { version_num: '版本号', standard: '社区版', enterprise: '企业版', + Professional: '专业版', Embedded: '嵌入式版', support: '获取技术支持', update_success: '更新成功', diff --git a/core/core-frontend/src/views/about/index.vue b/core/core-frontend/src/views/about/index.vue index 52a6bc560c..cdccb6f682 100644 --- a/core/core-frontend/src/views/about/index.vue +++ b/core/core-frontend/src/views/about/index.vue @@ -228,6 +228,8 @@ const syncFree = () => { ? $t('about.standard') : license.edition === 'Embedded' ? $t('about.Embedded') + : license.edition === 'Professional' + ? $t('about.Professional') : $t('about.enterprise') }}