Pre Merge pull request !51 from 1024/master

This commit is contained in:
1024 2024-03-17 14:54:17 +00:00 committed by Gitee
commit 639f5cefa9
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 17 additions and 17 deletions

View File

@ -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;
}

View File

@ -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-one|tags-style-four|tags-style-five>",默认 tags-style-five
// 定义的值与 `/src/layout/navBars/tagsView/tagsView.vue` 中的 class 同名
tagsStyle: 'tags-style-five',
tagsStyle: 'tags-style-four',
// 主页面切换动画:可选值"<slide-right|slide-left|opacitys>",默认 slide-right
animation: 'slide-right',
// 分栏高亮风格:可选值"<columns-round|columns-card>",默认 columns-round
columnsAsideStyle: 'columns-round',
columnsAsideStyle: 'columns-card',
// 分栏布局风格:可选值"<columns-horizontal|columns-vertical>",默认 columns-horizontal
columnsAsideLayout: 'columns-vertical',
@ -125,7 +125,7 @@ export const useThemeConfig = defineStore('themeConfig', {
* `initSetLayoutChange(设置布局切换,重置主题样式)`
*/
// 布局切换:可选值"<defaults|classic|transverse|columns>",默认 defaults
layout: 'defaults',
layout: 'columns',
/**
*