mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
179 lines
3.5 KiB
Vue
179 lines
3.5 KiB
Vue
<template>
|
|
<el-container>
|
|
<el-header style="padding:0">
|
|
<el-menu
|
|
:default-active="1"
|
|
mode="horizontal" text-color="#fff" style="border-bottom:0"
|
|
background-color="rgba(54,25,88,0.9)" active-text-color="rgba(54,25,88,1.0)"
|
|
>
|
|
<el-menu-item route="/" index="1">ThinkAdmin For HTML</el-menu-item>
|
|
<el-sub-menu index="2">
|
|
<template #title>Workspace</template>
|
|
<el-menu-item index="2-1">item one</el-menu-item>
|
|
<el-menu-item index="2-2">item two</el-menu-item>
|
|
<el-menu-item index="2-3">item three</el-menu-item>
|
|
</el-sub-menu>
|
|
<el-menu-item index="3">Info</el-menu-item>
|
|
<el-menu-item index="4">Orders</el-menu-item>
|
|
</el-menu>
|
|
</el-header>
|
|
<el-container>
|
|
<el-aside width="280px">
|
|
<el-tabs tab-position="left" style="height:100%">
|
|
<el-tab-pane>
|
|
<template #label>ONE</template>
|
|
<h3>ONE - MENU</h3>
|
|
</el-tab-pane>
|
|
<el-tab-pane>
|
|
<template #label>TWO</template>
|
|
<h3>TWO - MENU</h3>
|
|
</el-tab-pane>
|
|
<el-tab-pane>
|
|
<template #label>THR</template>
|
|
<h3>THR - MENU</h3>
|
|
</el-tab-pane>
|
|
<el-tab-pane>
|
|
<template #label>FUR</template>
|
|
<h3>FUR - MENU</h3>
|
|
</el-tab-pane>
|
|
<el-tab-pane>
|
|
<template #label>FIV</template>
|
|
<h3>FIV - MENU</h3>
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
</el-aside>
|
|
<el-container>
|
|
<el-main>
|
|
<router-view></router-view>
|
|
</el-main>
|
|
<el-footer>Footer</el-footer>
|
|
</el-container>
|
|
</el-container>
|
|
</el-container>
|
|
</template>
|
|
|
|
<style lang="less">
|
|
html, body {
|
|
height: 100%;
|
|
display: block;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body > .el-container {
|
|
height: 100%;
|
|
|
|
> .el-header {
|
|
color: #fff;
|
|
background: #0d84ff;
|
|
line-height: 60px;
|
|
}
|
|
|
|
> .el-container {
|
|
|
|
> .el-aside {
|
|
background: #53a8ff;
|
|
}
|
|
|
|
> .el-container {
|
|
|
|
> .el-main {
|
|
background: #efefef;
|
|
}
|
|
|
|
> .el-footer {
|
|
color: #fff;
|
|
background: #333;
|
|
line-height: 60px;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
.el-tabs__header {
|
|
width: 60px;
|
|
margin: 0 !important;
|
|
background: rgba(54, 25, 88, 0.8);
|
|
|
|
.el-tabs__active-bar {
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
.el-tabs__nav-wrap {
|
|
margin-right: 0 !important;
|
|
|
|
&::after {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.el-tabs__item {
|
|
color: #FFF;
|
|
width: 100% !important;
|
|
height: 60px !important;
|
|
padding: 0 !important;
|
|
line-height: 60px !important;
|
|
text-align: center !important;
|
|
|
|
&.is-active {
|
|
background: rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
&:hover:not(.is-active) {
|
|
background: rgba(0, 0, 0, 0.1);
|
|
}
|
|
}
|
|
}
|
|
|
|
.el-tabs__content {
|
|
width: 220px !important;
|
|
height: 100% !important;
|
|
background: red;
|
|
text-align: center;
|
|
}
|
|
|
|
.el-menu {
|
|
.el-menu-item:not(.is-disabled) {
|
|
&:hover {
|
|
color: #FFF !important;
|
|
background: rgba(54, 25, 88, 0.9) !important;
|
|
}
|
|
|
|
&.is-active {
|
|
color: #FFF !important;
|
|
background: rgba(0, 0, 0, 0.4);
|
|
}
|
|
}
|
|
|
|
.el-sub-menu {
|
|
.el-sub-menu__title {
|
|
color: #FFF !important;
|
|
background: none !important;
|
|
}
|
|
|
|
&.is-opened {
|
|
.el-sub-menu__title {
|
|
background: rgba(0, 0, 0, 0.1) !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
export default {
|
|
name: "layout",
|
|
components: {},
|
|
data() {
|
|
return {
|
|
menus: []
|
|
}
|
|
},
|
|
created() {
|
|
},
|
|
methods: {}
|
|
}
|
|
</script>
|