Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
VueElementTemplate
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
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
HireTest
VueElementTemplate
Commits
7e1ba16d
Commit
7e1ba16d
authored
Nov 06, 2017
by
Pan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor:add scroll-bar to sidebar
parent
7451ed62
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
70 additions
and
12 deletions
+70
-12
index.vue
src/components/ScrollBar/index.vue
+54
-0
index.vue
src/components/ScrollPane/index.vue
+0
-1
sidebar.scss
src/styles/sidebar.scss
+3
-6
Navbar.vue
src/views/layout/components/Navbar.vue
+4
-1
Sidebar.vue
src/views/layout/components/Sidebar.vue
+9
-4
No files found.
src/components/ScrollBar/index.vue
0 → 100644
View file @
7e1ba16d
<
template
>
<div
class=
'scroll-container'
ref=
'scrollContainer'
@
mousewheel=
"handleScroll"
>
<div
class=
'scroll-wrapper'
ref=
'scrollWrapper'
:style=
"
{top: top + 'px'}">
<slot></slot>
</div>
</div>
</
template
>
<
script
>
const
delta
=
15
export
default
{
name
:
'scrollBar'
,
data
()
{
return
{
top
:
0
}
},
methods
:
{
handleScroll
(
e
)
{
e
.
preventDefault
()
const
$container
=
this
.
$refs
.
scrollContainer
const
$containerHeight
=
$container
.
offsetHeight
const
$wrapper
=
this
.
$refs
.
scrollWrapper
const
$wrapperHeight
=
$wrapper
.
offsetHeight
if
(
e
.
wheelDelta
>
0
)
{
this
.
top
=
Math
.
min
(
0
,
this
.
top
+
e
.
wheelDelta
)
}
else
{
if
(
$containerHeight
-
delta
<
$wrapperHeight
)
{
if
(
this
.
top
<
-
(
$wrapperHeight
-
$containerHeight
+
delta
))
{
this
.
top
=
this
.
top
}
else
{
this
.
top
=
Math
.
max
(
this
.
top
+
e
.
wheelDelta
,
$containerHeight
-
$wrapperHeight
-
delta
)
}
}
else
{
this
.
top
=
0
}
}
}
}
}
</
script
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
.scroll-container
{
position
:
relative
;
width
:
100%
;
height
:
100%
;
background-color
:
#545c64
;
.scroll-wrapper
{
position
:
absolute
;
width
:
100%
;
}
}
</
style
>
src/components/ScrollPane/index.vue
View file @
7e1ba16d
...
...
@@ -21,7 +21,6 @@ export default {
const
$containerWidth
=
$container
.
offsetWidth
const
$wrapper
=
this
.
$refs
.
scrollWrapper
const
$wrapperWidth
=
$wrapper
.
offsetWidth
console
.
log
(
$containerWidth
,
$wrapperWidth
)
if
(
e
.
wheelDelta
>
0
)
{
this
.
left
=
Math
.
min
(
0
,
this
.
left
+
e
.
wheelDelta
)
}
else
{
...
...
src/styles/sidebar.scss
View file @
7e1ba16d
...
...
@@ -14,10 +14,6 @@
bottom
:
0
;
left
:
0
;
z-index
:
1001
;
overflow-y
:
auto
;
&
:
:-
webkit-scrollbar
{
display
:
none
}
a
{
display
:
inline-block
;
width
:
100%
;
...
...
@@ -27,12 +23,13 @@
}
.el-menu
{
border
:
none
;
width
:
100%
;
}
}
.hideSidebar
{
.sidebar-container
{
.sidebar-container
,
.sidebar-container
.el-menu
{
width
:
36px
!
important
;
overflow
:
inherit
;
//
overflow: inherit;
}
.main-container
{
margin-left
:
36px
;
...
...
src/views/layout/components/Navbar.vue
View file @
7e1ba16d
...
...
@@ -2,7 +2,7 @@
<el-menu
class=
"navbar"
mode=
"horizontal"
>
<hamburger
class=
"hamburger-container"
:toggleClick=
"toggleSideBar"
:isActive=
"sidebar.opened"
></hamburger>
<levelbar></levelbar>
<levelbar
class=
"levelbar-container"
></levelbar>
<div
class=
"right-menu"
>
...
...
@@ -111,6 +111,9 @@ export default {
float
:
left
;
padding
:
0
10px
;
}
.levelbar-container
{
float
:
left
;
}
.errLog-container
{
display
:
inline-block
;
vertical-align
:
top
;
...
...
src/views/layout/components/Sidebar.vue
View file @
7e1ba16d
<
template
>
<el-menu
mode=
"vertical"
unique-opened
:default-active=
"$route.path"
:collapse=
"isCollapse"
background-color=
"#545c64"
text-color=
"#fff"
active-text-color=
"#ffd04b"
>
<sidebar-item
:routes=
'permission_routers'
></sidebar-item>
</el-menu>
<scroll-bar>
<el-menu
mode=
"vertical"
unique-opened
:default-active=
"$route.path"
:collapse=
"isCollapse"
background-color=
"#545c64"
text-color=
"#fff"
active-text-color=
"#ffd04b"
>
<sidebar-item
:routes=
'permission_routers'
></sidebar-item>
</el-menu>
</scroll-bar>
</
template
>
<
script
>
import
{
mapGetters
}
from
'vuex'
import
SidebarItem
from
'./SidebarItem'
import
ScrollBar
from
'@/components/ScrollBar'
export
default
{
components
:
{
SidebarItem
},
components
:
{
SidebarItem
,
ScrollBar
},
computed
:
{
...
mapGetters
([
'permission_routers'
,
...
...
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