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
36f17548
authored
2023-01-13 10:47:20 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:字典
1 parent
e9e20b99
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
9 deletions
src/layout/components/Navbar.vue
src/layout/components/Navbar.vue
View file @
36f1754
<
template
>
<div
class=
"navbar-con"
>
<div
class=
"navbar"
>
<div
class=
"title"
>
{{
title
}}
</div>
<div
class=
"title"
>
{{
dicData
[
'sysCode'
][
0
].
DNAME
}}
</div>
<div
class=
"user"
>
欢迎进入系统
{{
name
}}
<svg-icon
icon-class=
'close'
class=
"closeStyle"
@
click=
"onCancel"
/>
退出系统
</div>
<div
class=
"sidebarLeft"
>
<sidebarLeft
/>
...
...
@@ -13,7 +13,6 @@
</div>
</
template
>
<
script
>
import
defaultSettings
from
'@/settings'
import
sidebarLeft
from
'./Sidebar/sidebarLeft'
import
sidebarRight
from
'./Sidebar/sidebarRight'
import
{
mapGetters
}
from
'vuex'
...
...
@@ -23,16 +22,10 @@ export default {
sidebarRight
},
computed
:
{
...
mapGetters
([
'sidebar'
,
'avatar'
,
'name'
])
},
data
()
{
return
{
title
:
defaultSettings
.
title
}
...
mapGetters
([
'sidebar'
,
'dicData'
,
'name'
])
},
methods
:
{
onCancel
()
{
}
}
}
...
...
Please
register
or
sign in
to post a comment