123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- <template>
- <a-config-provider :locale="lang">
- <a-layout style="min-height: 100%;">
- <a-drawer
- v-show="clientWidth<512"
- :closable="false"
- :visible="collapsed"
- placement="left"
- @close="collapsed=false"
- >
- <side-bar/>
- </a-drawer>
- <a-layout-sider
- v-show="clientWidth>=512"
- v-model="collapsed"
- :collapsible="true"
- :style="{zIndex: 11}"
- theme="light"
- class="layout-sider"
- >
- <side-bar/>
- </a-layout-sider>
- <a-layout>
- <a-layout-header :style="{position: 'fixed', zIndex: 10, width:'100%'}">
- <header-layout @clickUnFold="collapsed=true"/>
- </a-layout-header>
- <a-layout-content>
- <page-header/>
- <div class="router-view">
- <router-view/>
- </div>
- </a-layout-content>
- <a-layout-footer>
- <footer-layout/>
- </a-layout-footer>
- </a-layout>
- </a-layout>
- </a-config-provider>
- </template>
- <script>
- import HeaderLayout from './HeaderLayout.vue'
- import SideBar from './SideBar.vue'
- import FooterLayout from './FooterLayout.vue'
- import PageHeader from '@/components/PageHeader/PageHeader.vue'
- import zh_CN from 'ant-design-vue/es/locale/zh_CN'
- import zh_TW from 'ant-design-vue/es/locale/zh_TW'
- import en_US from 'ant-design-vue/es/locale/en_US'
- export default {
- name: 'BaseLayout',
- data() {
- return {
- collapsed: this.collapse(),
- clientWidth: document.body.clientWidth,
- }
- },
- mounted() {
- window.onresize = () => {
- this.collapsed = this.collapse()
- this.clientWidth = this.getClientWidth()
- }
- },
- components: {
- SideBar,
- PageHeader,
- HeaderLayout,
- FooterLayout
- },
- methods: {
- getClientWidth() {
- return document.body.clientWidth
- },
- collapse() {
- return !(this.getClientWidth() > 768 || this.getClientWidth() < 512)
- }
- },
- computed: {
- lang: {
- get() {
- switch (this.$language.current) {
- case 'zh_CN':
- return zh_CN
- case 'zh_TW':
- return zh_TW
- default:
- return en_US
- }
- }
- }
- }
- }
- </script>
- <style lang="less">
- .layout-sider .sidebar {
- //position: fixed;
- //width: 200px;
- ul.ant-menu-inline.ant-menu-root {
- height: calc(100vh - 120px);
- overflow-y: auto;
- overflow-x: hidden;
- .ant-menu-item {
- width: unset;
- }
- }
- ul.ant-menu-inline-collapsed {
- height: calc(100vh - 200px);
- overflow-y: auto;
- overflow-x: hidden;
- }
- }
- </style>
- <style lang="less">
- @dark: ~"(prefers-color-scheme: dark)";
- body {
- overflow: unset !important;
- }
- @media @dark {
- h1, h2, h3, h4, h5, h6, p {
- color: #fafafa !important;
- }
- }
- .ant-layout-header {
- background-color: #fff;
- @media @dark {
- background-color: #1f1f1f !important;
- }
- }
- .ant-card {
- @media @dark {
- background-color: #1f1f1f !important;
- }
- }
- .ant-layout-sider {
- background-color: #ffffff;
- @media @dark {
- background-color: rgb(20, 20, 20) !important;
- .ant-layout-sider-trigger {
- background-color: rgb(20, 20, 20) !important;
- }
- .ant-menu {
- border-right: 0 !important;
- }
- }
- &.ant-layout-sider-has-trigger {
- padding-bottom: 0;
- }
- box-shadow: 2px 0 8px rgba(29, 35, 41, 0.05);
- }
- .ant-drawer-body {
- .sidebar .logo {
- box-shadow: 0 1px 0 0 #e8e8e8;
- }
- .ant-menu-inline .ant-menu-selected::after, .ant-menu-inline .ant-menu-item-selected::after {
- border-right: 0 !important;
- }
- }
- @media @dark {
- .ant-checkbox-indeterminate {
- .ant-checkbox-inner {
- background-color: transparent !important;
- }
- }
- }
- .ant-layout-header {
- padding: 0 !important;
- }
- .ant-table-small {
- font-size: 13px;
- }
- .ant-card-bordered {
- }
- .header-notice-wrapper .ant-tabs-content {
- max-height: 250px;
- }
- .header-notice-wrapper .ant-tabs-tabpane-active {
- overflow-y: scroll;
- }
- .ant-layout-footer {
- @media (max-width: 320px) {
- padding: 10px;
- }
- }
- .ant-layout-content {
- margin: 64px 0;
- min-height: auto;
- .router-view {
- padding: 20px;
- @media (max-width: 512px) {
- padding: 20px 0;
- }
- position: relative;
- }
- }
- .ant-layout-footer {
- text-align: center;
- }
- </style>
|