Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
235283e5
authored
2022-12-06 09:51:14 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:系统标题
1 parent
9cdd6ef4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
6 deletions
src/image/logo.png
src/layout/components/Navbar.vue
src/layout/components/Sidebar/Logo.vue
src/image/logo.png
deleted
100644 → 0
View file @
9cdd6ef
34.9 KB
src/layout/components/Navbar.vue
View file @
235283e
...
...
@@ -2,7 +2,7 @@
<div
class=
"navbar-con"
>
<div
class=
"navbar"
v-theme
.
background=
"mTheme"
>
<div
class=
"logo"
>
<img
v-if=
"logo"
:src=
"logo"
class=
"header-logo"
>
{{
title
}}
</div>
<div
class=
"backdrop"
>
<theme
style=
"float: right;height: 26px;width: 26px;margin-top: 26px;"
@
change=
"themeChange"
/>
...
...
@@ -24,6 +24,7 @@
</div>
</
template
>
<
script
>
import
defaultSettings
from
'@/settings'
import
{
mapGetters
}
from
'vuex'
export
default
{
computed
:
{
...
...
@@ -31,8 +32,7 @@ export default {
},
data
()
{
return
{
logo
:
require
(
'../../image/logo.png'
),
noticeList
:
[]
title
:
defaultSettings
.
title
}
},
methods
:
{
...
...
@@ -54,6 +54,12 @@ export default {
<
style
lang=
"scss"
scoped
>
.navbar-con
{
position
:
relative
;
.logo
{
color
:
#fff
;
font-size
:
26px
;
font-weight
:
700
;
}
}
.NoticeBar
{
...
...
src/layout/components/Sidebar/Logo.vue
View file @
235283e
...
...
@@ -8,7 +8,6 @@
</h1>
</router-link>
<router-link
v-else
key=
"expand"
class=
"sidebar-logo-link"
to=
"/"
>
<img
v-if=
"logo"
:src=
"logo"
class=
"sidebar-logo"
>
<h1
class=
"sidebar-title"
>
{{
title
}}
</h1>
...
...
@@ -20,7 +19,6 @@
<
script
>
import
defaultSettings
from
'@/settings'
const
{
title
}
=
defaultSettings
import
logonImg
from
'@/image/logo.png'
export
default
{
name
:
'SidebarLogo'
,
props
:
{
...
...
@@ -32,7 +30,6 @@ export default {
data
()
{
return
{
title
:
title
,
logo
:
logonImg
}
}
}
...
...
Please
register
or
sign in
to post a comment