From e8d97f4d77badbabd49e3fe2e20e1014ef602ee2 Mon Sep 17 00:00:00 2001 From: 1024 <772267911@qq.com> Date: Fri, 9 Jun 2023 10:30:55 +0000 Subject: [PATCH] =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E8=8F=9C=E5=8D=95=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=EF=BC=8C=E8=AE=A9=E7=9C=8B=E8=B5=B7=E6=9D=A5=E6=9B=B4?= =?UTF-8?q?=E5=8A=A0=E8=88=92=E6=9C=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 1024 <772267911@qq.com> --- src/layout/component/columnsAside.vue | 6 +++--- src/stores/themeConfig.ts | 28 +++++++++++++-------------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/src/layout/component/columnsAside.vue b/src/layout/component/columnsAside.vue index e75e38d..c94e71f 100644 --- a/src/layout/component/columnsAside.vue +++ b/src/layout/component/columnsAside.vue @@ -241,7 +241,7 @@ watch( li { color: var(--next-bg-columnsMenuBarColor); width: 100%; - height: 50px; + height: 60px; text-align: center; display: flex; cursor: pointer; @@ -258,7 +258,7 @@ watch( } .columns-horizontal { display: flex; - height: 50px; + height: 60px; width: 100%; align-items: center; padding: 0 5px; @@ -293,7 +293,7 @@ watch( .columns-card { @extend .columns-round; top: 0; - height: 50px; + height: 60px; width: 100%; border-radius: 0; } diff --git a/src/stores/themeConfig.ts b/src/stores/themeConfig.ts index 3e8e683..9ab5145 100644 --- a/src/stores/themeConfig.ts +++ b/src/stores/themeConfig.ts @@ -36,19 +36,19 @@ export const useThemeConfig = defineStore('themeConfig', { * 菜单设置 */ // 默认菜单导航背景颜色 - menuBar: '#545c64', + menuBar: '#FFFFFF', // 默认菜单导航字体颜色 - menuBarColor: '#eaeaea', + menuBarColor: '#000000', // 默认菜单高亮背景色 - menuBarActiveColor: 'rgba(0, 0, 0, 0.2)', + menuBarActiveColor: 'rgba(64, 158, 255, 0.25)', // 是否开启菜单背景颜色渐变 - isMenuBarColorGradual: false, + isMenuBarColorGradual: true, /** * 分栏设置 */ // 默认分栏菜单背景颜色 - columnsMenuBar: '#545c64', + columnsMenuBar: '#222B45', // 默认分栏菜单字体颜色 columnsMenuBarColor: '#e6e6e6', // 是否开启分栏菜单背景颜色渐变 @@ -78,7 +78,7 @@ export const useThemeConfig = defineStore('themeConfig', { * 界面显示 */ // 是否开启侧边栏 Logo - isShowLogo: false, + isShowLogo: true, // 初始化变量,用于 el-scrollbar 的高度更新,请勿删除 isShowLogoChange: false, // 是否开启 Breadcrumb,强制经典、横向布局不显示 @@ -86,17 +86,17 @@ export const useThemeConfig = defineStore('themeConfig', { // 是否开启 Tagsview isTagsview: true, // 是否开启 Breadcrumb 图标 - isBreadcrumbIcon: false, + isBreadcrumbIcon: true, // 是否开启 Tagsview 图标 - isTagsviewIcon: false, + isTagsviewIcon: true, // 是否开启 TagsView 缓存 - isCacheTagsView: false, + isCacheTagsView: true, // 是否开启 TagsView 拖拽 isSortableTagsView: true, // 是否开启 TagsView 共用 - isShareTagsView: false, + isShareTagsView: true, // 是否开启 Footer 底部版权信息 - isFooter: false, + isFooter: true, // 是否开启灰色模式 isGrayscale: false, // 是否开启色弱模式 @@ -111,11 +111,11 @@ export const useThemeConfig = defineStore('themeConfig', { */ // Tagsview 风格:可选值"",默认 tags-style-five // 定义的值与 `/src/layout/navBars/tagsView/tagsView.vue` 中的 class 同名 - tagsStyle: 'tags-style-five', + tagsStyle: 'tags-style-four', // 主页面切换动画:可选值"",默认 slide-right animation: 'slide-right', // 分栏高亮风格:可选值"",默认 columns-round - columnsAsideStyle: 'columns-round', + columnsAsideStyle: 'columns-card', // 分栏布局风格:可选值"",默认 columns-horizontal columnsAsideLayout: 'columns-vertical', @@ -125,7 +125,7 @@ export const useThemeConfig = defineStore('themeConfig', { * 中的 `initSetLayoutChange(设置布局切换,重置主题样式)` 方法 */ // 布局切换:可选值"",默认 defaults - layout: 'defaults', + layout: 'columns', /** * 后端控制路由 -- Gitee