From 7294fcdc86f72705e46c99ec2572f9adf817c5c6 Mon Sep 17 00:00:00 2001 From: lau <1807121535@qq.com> Date: Sun, 28 Sep 2025 11:24:15 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E8=A7=84=E8=8C=83=E7=8E=AF=E5=A2=83?= =?UTF-8?q?=E5=8F=98=E9=87=8F=E5=91=BD=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- .env.production | 2 +- src/layout/components/Sidebar/Logo.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.development b/.env.development index 6d9460b9..3737274c 100644 --- a/.env.development +++ b/.env.development @@ -1,6 +1,6 @@ # 页面标题 VITE_APP_TITLE = RuoYi-Vue-Plus多租户管理系统 -VITE_LOGO_TITLE = RuoYi-Vue-Plus +VITE_APP_LOGO_TITLE = RuoYi-Vue-Plus # 开发环境配置 VITE_APP_ENV = 'development' diff --git a/.env.production b/.env.production index 445008c5..883c8f19 100644 --- a/.env.production +++ b/.env.production @@ -1,6 +1,6 @@ # 页面标题 VITE_APP_TITLE = RuoYi-Vue-Plus多租户管理系统 -VITE_LOGO_TITLE = RuoYi-Vue-Plus +VITE_APP_LOGO_TITLE = RuoYi-Vue-Plus # 生产环境配置 VITE_APP_ENV = 'production' diff --git a/src/layout/components/Sidebar/Logo.vue b/src/layout/components/Sidebar/Logo.vue index 139d23c8..997b7766 100644 --- a/src/layout/components/Sidebar/Logo.vue +++ b/src/layout/components/Sidebar/Logo.vue @@ -34,7 +34,7 @@ defineProps({ } }); -const title = import.meta.env.VITE_LOGO_TITLE; +const title = import.meta.env.VITE_APP_LOGO_TITLE; const settingsStore = useSettingsStore(); const sideTheme = computed(() => settingsStore.sideTheme);