From a8688c0f4a412343649a9eab06af2b82bc330274 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Mon, 13 Apr 2026 02:50:57 +0800 Subject: [PATCH] =?UTF-8?q?refactor(config):=20=E7=A7=BB=E9=99=A4=E5=BC=80?= =?UTF-8?q?=E5=8F=91=E8=80=85=E4=B8=AD=E5=BF=83=E5=92=8C=E4=BC=81=E4=B8=9A?= =?UTF-8?q?=E6=8E=A7=E5=88=B6=E5=8F=B0=E7=9A=84=E8=87=AA=E5=AE=9A=E4=B9=89?= =?UTF-8?q?=E5=AF=BC=E8=88=AA=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 删除了开发者中心页面配置中的 navigationStyle: 'custom' - 删除了企业控制台页面配置中的 navigationStyle: 'custom' - 简化了页面配置,保持默认导航样式 - 有助于提升页面兼容性和维护性 --- src/developer/index.config.ts | 1 - src/enterprise/index.config.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/developer/index.config.ts b/src/developer/index.config.ts index 8574af0..0b93cee 100644 --- a/src/developer/index.config.ts +++ b/src/developer/index.config.ts @@ -1,5 +1,4 @@ export default definePageConfig({ navigationBarTitleText: '开发者中心', - navigationStyle: 'custom', usingComponents: {}, }) diff --git a/src/enterprise/index.config.ts b/src/enterprise/index.config.ts index 3f36a54..d4a72a2 100644 --- a/src/enterprise/index.config.ts +++ b/src/enterprise/index.config.ts @@ -1,5 +1,4 @@ export default definePageConfig({ navigationBarTitleText: '企业控制台', - navigationStyle: 'custom', usingComponents: {}, })