Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
sts网站
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liyang
sts网站
Commits
2575c17f
Commit
2575c17f
authored
Apr 19, 2021
by
RuoYi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
主题颜色保存配置
parent
b6f13c54
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
15 deletions
+17
-15
ruoyi.scss
ruoyi-ui/src/assets/styles/ruoyi.scss
+0
-6
index.vue
ruoyi-ui/src/components/ThemePicker/index.vue
+0
-1
index.vue
ruoyi-ui/src/components/TopNav/index.vue
+12
-3
index.vue
ruoyi-ui/src/layout/components/Settings/index.vue
+4
-4
settings.js
ruoyi-ui/src/store/modules/settings.js
+1
-1
No files found.
ruoyi-ui/src/assets/styles/ruoyi.scss
View file @
2575c17f
...
...
@@ -176,12 +176,6 @@
color
:
#FFFFFF
;
}
/* submenu item */
.el-menu--horizontal
>
.el-submenu
.el-submenu__title
{
height
:
50px
!
important
;
line-height
:
50px
!
important
;
}
/* text color */
.text-navy
{
color
:
#1ab394
;
...
...
ruoyi-ui/src/components/ThemePicker/index.vue
View file @
2575c17f
...
...
@@ -35,7 +35,6 @@ export default {
if
(
typeof
val
!==
'string'
)
return
const
themeCluster
=
this
.
getThemeCluster
(
val
.
replace
(
'#'
,
''
))
const
originalCluster
=
this
.
getThemeCluster
(
oldVal
.
replace
(
'#'
,
''
))
console
.
log
(
themeCluster
,
originalCluster
)
const
$message
=
this
.
$message
({
message
:
' Compiling the theme'
,
...
...
ruoyi-ui/src/components/TopNav/index.vue
View file @
2575c17f
...
...
@@ -5,7 +5,7 @@
@
select=
"handleSelect"
>
<template
v-for=
"(item, index) in topMenus"
>
<el-menu-item
:index=
"item.path"
:key=
"index"
v-if=
"index
<
visibleNumber
"
<el-menu-item
:
style=
"
{'--theme': theme}" :
index="item.path" :key="index" v-if="index
<
visibleNumber
"
><svg-icon
:icon-class=
"item.meta.icon"
/>
{{
item
.
meta
.
title
}}
</el-menu-item
>
...
...
@@ -42,6 +42,9 @@ export default {
};
},
computed
:
{
theme
()
{
return
this
.
$store
.
state
.
settings
.
theme
;
},
// 顶部显示菜单
topMenus
()
{
let
topMenus
=
[];
...
...
@@ -149,7 +152,7 @@ export default {
};
</
script
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
>
.el-menu--horizontal
>
.el-menu-item
{
float
:
left
;
height
:
50px
;
...
...
@@ -162,7 +165,13 @@ export default {
}
.el-menu--horizontal
>
.el-menu-item.is-active
{
border-bottom
:
3px
solid
#
409eff
;
border-bottom
:
3px
solid
#
{
'var(--theme)'
}
;
color
:
#303133
;
}
/* submenu item */
.el-menu--horizontal
>
.el-submenu
.el-submenu__title
{
height
:
50px
!
important
;
line-height
:
50px
!
important
;
}
</
style
>
ruoyi-ui/src/layout/components/Settings/index.vue
View file @
2575c17f
...
...
@@ -77,13 +77,11 @@ export default {
components
:
{
ThemePicker
},
data
()
{
return
{
theme
:
this
.
$store
.
state
.
settings
.
theme
,
sideTheme
:
this
.
$store
.
state
.
settings
.
sideTheme
};
},
computed
:
{
theme
()
{
return
this
.
$store
.
state
.
settings
.
theme
},
fixedHeader
:
{
get
()
{
return
this
.
$store
.
state
.
settings
.
fixedHeader
...
...
@@ -138,6 +136,7 @@ export default {
key
:
'theme'
,
value
:
val
})
this
.
theme
=
val
;
},
handleTheme
(
val
)
{
this
.
$store
.
dispatch
(
'settings/changeSetting'
,
{
...
...
@@ -161,7 +160,8 @@ export default {
"tagsView":
${
this
.
tagsView
}
,
"fixedHeader":
${
this
.
fixedHeader
}
,
"sidebarLogo":
${
this
.
sidebarLogo
}
,
"sideTheme":"
${
this
.
sideTheme
}
"
"sideTheme":"
${
this
.
sideTheme
}
",
"theme":"
${
this
.
theme
}
"
}`
);
setTimeout
(
loading
.
close
(),
1000
)
...
...
ruoyi-ui/src/store/modules/settings.js
View file @
2575c17f
...
...
@@ -5,7 +5,7 @@ const { sideTheme, showSettings, topNav, tagsView, fixedHeader, sidebarLogo } =
const
storageSetting
=
JSON
.
parse
(
localStorage
.
getItem
(
'layout-setting'
))
||
''
const
state
=
{
theme
:
variables
.
theme
,
theme
:
storageSetting
.
theme
||
variables
.
theme
,
sideTheme
:
storageSetting
.
sideTheme
||
sideTheme
,
showSettings
:
showSettings
,
topNav
:
storageSetting
.
topNav
===
undefined
?
topNav
:
storageSetting
.
topNav
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment