123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <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>
|