mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
fix(plugin): 修主题为light时的样式问题
This commit is contained in:
parent
d29445b1aa
commit
651ec61ba4
@ -31,6 +31,7 @@ export default {
|
||||
### top
|
||||
<!--  -->
|
||||
<img :src="$withBase('top.png')" alt="top">
|
||||
|
||||
### mixin
|
||||
<!--  -->
|
||||
<img :src="$withBase('mixin.png')" alt="mixin">
|
||||
@ -69,6 +70,8 @@ export default {
|
||||
title: "Fes.js",
|
||||
// 底部文字
|
||||
footer: 'Created by MumbelFe',
|
||||
// 主题light
|
||||
theme: 'dark'
|
||||
// 是否开启 tabs
|
||||
multiTabs: false,
|
||||
// 布局类型
|
||||
@ -98,6 +101,13 @@ export default {
|
||||
|
||||
- **详情**:页面底部的文字。
|
||||
|
||||
### theme
|
||||
- **类型**:`String`
|
||||
|
||||
- **默认值**:`dark`
|
||||
|
||||
- **详情**:主题,可选有 `dark`、`light`
|
||||
|
||||
### navigation
|
||||
- **类型**:`String`
|
||||
|
||||
|
@ -31,6 +31,7 @@ export default {
|
||||
### top
|
||||
<!--  -->
|
||||
<img :src="$withBase('top.png')" alt="top">
|
||||
|
||||
### mixin
|
||||
<!--  -->
|
||||
<img :src="$withBase('mixin.png')" alt="mixin">
|
||||
@ -69,6 +70,8 @@ export default {
|
||||
title: "Fes.js",
|
||||
// 底部文字
|
||||
footer: 'Created by MumbelFe',
|
||||
// 主题light
|
||||
theme: 'dark'
|
||||
// 是否开启 tabs
|
||||
multiTabs: false,
|
||||
// 布局类型
|
||||
@ -98,6 +101,13 @@ export default {
|
||||
|
||||
- **详情**:页面底部的文字。
|
||||
|
||||
### theme
|
||||
- **类型**:`String`
|
||||
|
||||
- **默认值**:`dark`
|
||||
|
||||
- **详情**:主题,可选有 `dark`、`light`
|
||||
|
||||
### navigation
|
||||
- **类型**:`String`
|
||||
|
||||
|
@ -3,7 +3,8 @@
|
||||
v-if="routeHasLayout"
|
||||
:class="[
|
||||
collapsed ? 'main-layout-collapsed' : '',
|
||||
`main-layout-navigation-${navigation}`
|
||||
`main-layout-navigation-${navigation}`,
|
||||
`main-layout-theme-${siderTheme}`
|
||||
]"
|
||||
class="main-layout"
|
||||
>
|
||||
@ -334,5 +335,21 @@ export default {
|
||||
.layout-footer {
|
||||
text-align: center;
|
||||
}
|
||||
&.main-layout-theme-light{
|
||||
.logo-name{
|
||||
color: rgba(0, 0, 0, 0.65) !important;
|
||||
}
|
||||
&.main-layout-navigation-mixin{
|
||||
.logo-name{
|
||||
color: #fff !important;
|
||||
}
|
||||
}
|
||||
&.main-layout-navigation-top{
|
||||
.layout-header {
|
||||
background: #fff;
|
||||
color: rgba(0, 0, 0, 0.85);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
@ -33,6 +33,7 @@ export default {
|
||||
footer: "Created by MumbleFe",
|
||||
multiTabs: false,
|
||||
navigation: "mixin",
|
||||
theme: 'light',
|
||||
menus: [
|
||||
{
|
||||
name: "index",
|
||||
|
Loading…
x
Reference in New Issue
Block a user