| | |
| | | }
|
| | | }
|
| | | </style>
|
| | |
|
| | | <style lang="scss">
|
| | | // fix css style bug in open el-dialog
|
| | | .el-popup-parent--hidden {
|
| | | .fixed-header {
|
| | | padding-right: 17px;
|
| | | }
|
| | | }
|
| | | </style> |
| | |
| | | <template>
|
| | | <div :class="classObj" class="app-wrapper" :style="{ '--current-color': theme }">
|
| | | <el-scrollbar>
|
| | | <div v-if="device === 'mobile' && sidebar.opened" class="drawer-bg" @click="handleClickOutside"/>
|
| | | <sidebar v-if="!sidebar.hide" class="sidebar-container" />
|
| | | <div :class="{ hasTagsView: needTagsView, sidebarHide: sidebar.hide }" class="main-container">
|
| | |
| | | <app-main />
|
| | | <settings ref="settingRef" />
|
| | | </div>
|
| | | </el-scrollbar>
|
| | | </div>
|
| | | </template>
|
| | |
|
| | |
| | | height: 100%;
|
| | | width: 100%;
|
| | |
|
| | | .el-scrollbar{
|
| | | height: 100%;
|
| | | }
|
| | |
|
| | | :deep(.el-scrollbar__wrap) {
|
| | | overflow-x: hidden;
|
| | | }
|
| | |
|
| | | &.mobile.openSidebar {
|
| | | position: fixed;
|
| | | top: 0;
|
| | |
| | | import locale from 'element-plus/lib/locale/lang/zh-cn' // 中文语言
|
| | |
|
| | | import '@/assets/styles/index.scss' // global css
|
| | |
|
| | | import App from './App'
|
| | | import store from './store'
|
| | | import router from './router'
|