mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2026-02-01 12:58:14 +00:00
132 lines
1.9 KiB
Vue
132 lines
1.9 KiB
Vue
<template>
|
|
<div class="app-slider">
|
|
<div class="app-slider__logo">
|
|
<img src="/logo.png" />
|
|
<span v-if="!app.isFold || browser.isMini">{{ app.info.name }}</span>
|
|
</div>
|
|
|
|
<div class="app-slider__container">
|
|
<b-menu />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" name="app-slider" setup>
|
|
import { useBase } from "/$/base";
|
|
import { useBrowser } from "/@/cool";
|
|
import BMenu from "./bmenu";
|
|
|
|
const { browser } = useBrowser();
|
|
const { app } = useBase();
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.app-slider {
|
|
height: 100%;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
|
background-color: #2f3447;
|
|
|
|
&__logo {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 80px;
|
|
cursor: pointer;
|
|
|
|
img {
|
|
height: 30px;
|
|
width: 30px;
|
|
}
|
|
|
|
span {
|
|
color: #fff;
|
|
font-weight: bold;
|
|
font-size: 26px;
|
|
margin-left: 10px;
|
|
line-height: 1;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
&__container {
|
|
height: calc(100% - 80px);
|
|
overflow-y: auto;
|
|
|
|
&::-webkit-scrollbar {
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
}
|
|
|
|
&__menu {
|
|
&.el-popper {
|
|
&.is-light {
|
|
border: 0;
|
|
}
|
|
}
|
|
|
|
.el-menu {
|
|
border-right: 0;
|
|
background-color: transparent;
|
|
|
|
&--popup {
|
|
.cl-svg,
|
|
span {
|
|
color: #000;
|
|
}
|
|
}
|
|
|
|
.el-sub-menu__title,
|
|
&-item {
|
|
&.is-active,
|
|
&:hover {
|
|
background-color: var(--color-primary) !important;
|
|
|
|
.cl-svg,
|
|
span {
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
|
|
.el-sub-menu__title,
|
|
&-item,
|
|
&__title {
|
|
color: #eee;
|
|
letter-spacing: 0.5px;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
|
|
.wrap {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 0 4px;
|
|
}
|
|
|
|
.cl-svg {
|
|
font-size: 16px;
|
|
}
|
|
|
|
span {
|
|
display: inline-block;
|
|
font-size: 12px;
|
|
letter-spacing: 1px;
|
|
margin-left: 10px;
|
|
user-select: none;
|
|
}
|
|
}
|
|
|
|
&--collapse {
|
|
.wrap {
|
|
text-align: center;
|
|
}
|
|
|
|
.el-sub-menu__title {
|
|
padding: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|