Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
RuoYi Vue
Commits
0a670fdf
Commit
0a670fdf
authored
Apr 08, 2023
by
e
Browse files
将el-scrollbar移动到main-container下,避免鼠标移出时无法隐藏的问题
parent
a33090c9
Changes
2
Hide whitespace changes
Inline
Side-by-side
ruoyi-ui/src/assets/styles/sidebar.scss
View file @
0a670fdf
#app
{
#app
{
.main-container
{
.main-container
{
min-
height
:
100%
;
height
:
100%
;
transition
:
margin-left
.28s
;
transition
:
margin-left
.28s
;
margin-left
:
$base-sidebar-width
;
margin-left
:
$base-sidebar-width
;
position
:
relative
;
position
:
relative
;
...
...
ruoyi-ui/src/layout/index.vue
View file @
0a670fdf
<
template
>
<
template
>
<div
:class=
"classObj"
class=
"app-wrapper"
:style=
"
{'--current-color': theme}">
<div
:class=
"classObj"
class=
"app-wrapper"
:style=
"
{'--current-color': theme}">
<el-scrollbar>
<div
v-if=
"device==='mobile'&&sidebar.opened"
class=
"drawer-bg"
@
click=
"handleClickOutside"
/>
<div
v-if=
"device==='mobile'&&sidebar.opened"
class=
"drawer-bg"
@
click=
"handleClickOutside"
/>
<sidebar
v-if=
"!sidebar.hide"
class=
"sidebar-container"
/>
<sidebar
v-if=
"!sidebar.hide"
class=
"sidebar-container"
/>
<div
:class=
"
{hasTagsView:needTagsView,sidebarHide:sidebar.hide}" class="main-container">
<div
:class=
"
{hasTagsView:needTagsView,sidebarHide:sidebar.hide}" class="main-container">
<div
:class=
"
{'fixed-header':fixedHeader}">
<el-scrollbar>
<navbar/>
<div
:class=
"
{'fixed-header':fixedHeader}">
<tags-view
v-if=
"needTagsView"
/>
<navbar/>
</div>
<tags-view
v-if=
"needTagsView"
/>
<app-main/>
</div>
<right-panel>
<app-main/>
<settings/>
<right-panel>
</right-panel>
<settings/>
</right-panel>
</el-scrollbar>
</div>
</div>
</el-scrollbar>
</div>
</div>
</
template
>
</
template
>
...
...
Write
Preview
Supports
Markdown
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