From dab1e0a3e0b1279ee7be77d359ffc93a831455d4 Mon Sep 17 00:00:00 2001
From: liu <2021943741@qq.com>
Date: 星期一, 24 八月 2026 17:57:27 +0800
Subject: [PATCH] feat(preferences): 公司品牌信息化编辑与全局联动(登录页/菜单栏/网页标题),偏好设置 tab

---
 src/packages/effects/layouts/src/widgets/preferences/preferences-drawer.vue |   12 +++++++++++-
 1 files changed, 11 insertions(+), 1 deletions(-)

diff --git a/src/packages/effects/layouts/src/widgets/preferences/preferences-drawer.vue b/src/packages/effects/layouts/src/widgets/preferences/preferences-drawer.vue
index 3a9fd65..5b3a05e 100644
--- a/src/packages/effects/layouts/src/widgets/preferences/preferences-drawer.vue
+++ b/src/packages/effects/layouts/src/widgets/preferences/preferences-drawer.vue
@@ -43,6 +43,7 @@
   Breadcrumb,
   BuiltinTheme,
   ColorMode,
+  Company,
   Content,
   Copyright,
   Custom,
@@ -256,6 +257,10 @@
       label: $t('preferences.general'),
       value: 'general',
     },
+    {
+      label: $t('preferences.company.title'),
+      value: 'company',
+    },
   ];
 
   if (showCustomTab.value) {
@@ -352,6 +357,7 @@
         <VbenSegmented
           v-model="activeTab"
           :tabs="tabs"
+          scrollable
           :class="{
             'sticky-tabs-header': appEnableStickyPreferencesNavigationBar,
           }"
@@ -511,7 +517,6 @@
                 v-model:copyright-enable="copyrightEnable"
                 v-model:copyright-icp="copyrightIcp"
                 v-model:copyright-icp-link="copyrightIcpLink"
-                :disabled="!footerEnable"
               />
             </Block>
           </template>
@@ -527,6 +532,11 @@
               />
             </Block>
           </template>
+          <template #company>
+            <Block :title="$t('preferences.company.title')">
+              <Company />
+            </Block>
+          </template>
           <template #custom>
             <Block :title="customTabTitle">
               <Custom

--
Gitblit v1.9.3