若依
3 years ago
committed by
Gitee
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with
173 additions and
172 deletions
-
ruoyi-ui/src/layout/components/AppMain.vue
-
ruoyi-ui/src/layout/index.vue
|
|
@ -50,12 +50,3 @@ export default { |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</style> |
|
|
</style> |
|
|
|
|
|
|
|
|
<style lang="scss"> |
|
|
|
|
|
// fix css style bug in open el-dialog |
|
|
|
|
|
.el-popup-parent--hidden { |
|
|
|
|
|
.fixed-header { |
|
|
|
|
|
padding-right: 17px; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
</style> |
|
|
|
|
|
|
|
|
@ -1,5 +1,6 @@ |
|
|
<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"> |
|
|
@ -12,6 +13,7 @@ |
|
|
<settings/> |
|
|
<settings/> |
|
|
</right-panel> |
|
|
</right-panel> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
</el-scrollbar> |
|
|
</div> |
|
|
</div> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
@ -72,6 +74,14 @@ export default { |
|
|
height: 100%; |
|
|
height: 100%; |
|
|
width: 100%; |
|
|
width: 100%; |
|
|
|
|
|
|
|
|
|
|
|
.el-scrollbar{ |
|
|
|
|
|
height: 100%; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
::v-deep .el-scrollbar__wrap { |
|
|
|
|
|
overflow-x: hidden; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
&.mobile.openSidebar { |
|
|
&.mobile.openSidebar { |
|
|
position: fixed; |
|
|
position: fixed; |
|
|
top: 0; |
|
|
top: 0; |
|
|
|