| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408 |
- <template>
- <el-scrollbar
- class="vab-column-bar-container"
- :class="{
- 'is-collapse': collapse,
- ['vab-column-bar-container-' + theme.columnStyle]: true,
- }">
- <vab-logo />
- <el-tabs
- v-model="extra.first"
- tab-position="left"
- @tab-click="handleTabClick">
- <template v-for="(route, index) in handleRoutes">
- <el-tab-pane :key="index + route.name" :name="route.name">
- <template slot="label">
- <div
- class="vab-column-grid"
- :class="{
- ['vab-column-grid-' + theme.columnStyle]: true,
- }"
- :title="translateTitle(route.meta.title)">
- <div>
- <vab-icon
- v-if="route.meta.icon"
- :icon="route.meta.icon"
- :is-custom-svg="route.meta.isCustomSvg" />
- <span>
- {{ translateTitle(route.meta.title) }}
- </span>
- </div>
- </div>
- </template>
- </el-tab-pane>
- </template>
- </el-tabs>
- <el-menu
- :background-color="variables['column-second-menu-background']"
- :default-active="activeMenu"
- :default-openeds="defaultOpeneds"
- mode="vertical"
- :unique-opened="uniqueOpened">
- <el-divider>
- {{ translateTitle(handleGroupTitle) }}
- </el-divider>
- <template v-for="route in handlePartialRoutes">
- <vab-menu
- v-if="route.meta && !route.meta.hidden"
- :key="route.path"
- :item="route" />
- </template>
- </el-menu>
- </el-scrollbar>
- </template>
- <script>
- import { translateTitle } from '@/utils/i18n'
- import variables from '@/vab/styles/variables/variables.scss'
- import { mapActions, mapGetters } from 'vuex'
- import { defaultOpeneds, openFirstMenu, uniqueOpened } from '@/config'
- import { handleActivePath, handleMatched } from '@/utils/routes'
- export default {
- name: 'VabColumnBar',
- data() {
- return {
- activeMenu: '',
- groupTitle: '',
- defaultOpeneds,
- uniqueOpened,
- variables,
- }
- },
- computed: {
- ...mapGetters({
- collapse: 'settings/collapse',
- routes: 'routes/routes',
- activeName: 'routes/activeName',
- theme: 'settings/theme',
- extra: 'settings/extra',
- }),
- handleRoutes() {
- return this.routes.filter(
- (route) => route.meta && route.meta.hidden !== true
- )
- },
- handleActiveMenu() {
- return this.routes.find((route) => route.name === this.extra.first)
- },
- handlePartialRoutes() {
- const activeMenu = this.handleActiveMenu
- return activeMenu ? activeMenu.children : []
- },
- handleGroupTitle() {
- const activeMenu = this.handleActiveMenu
- return activeMenu ? activeMenu.meta.title : ''
- },
- },
- watch: {
- $route: {
- handler(route) {
- this.handleNoColumn()
- this.activeMenu = handleActivePath(route)
- const firstMenu = route.matched[0].name
- if (this.extra.first !== firstMenu) {
- this.extra.first = firstMenu
- this.handleTabClick(true)
- }
- },
- immediate: true,
- },
- activeName: {
- handler(val) {
- const matched = handleMatched(this.routes, val)
- this.extra.first = matched[0].name
- this.activeMenu = matched[matched.length - 1].path
- },
- },
- },
- methods: {
- ...mapActions({
- openSideBar: 'settings/openSideBar',
- foldSideBar: 'settings/foldSideBar',
- }),
- translateTitle,
- handleTabClick(handler) {
- this.handleNoColumn()
- if (handler !== true && openFirstMenu)
- this.$router.push(this.handleActiveMenu)
- },
- handleNoColumn() {
- this.$nextTick(() => {
- if (this.theme.layout === 'column' && this.$route.meta.noColumn) {
- this.foldSideBar()
- if (document.querySelector('.fold-unfold'))
- document.querySelector('.fold-unfold').style = 'display:none'
- } else {
- this.openSideBar()
- if (document.querySelector('.fold-unfold'))
- document.querySelector('.fold-unfold').style = ''
- }
- })
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- @mixin active {
- &:hover {
- color: $base-color-blue;
- background-color: $base-column-second-menu-background-active !important;
- i,
- svg {
- color: $base-color-blue;
- }
- }
- &.is-active {
- color: $base-color-blue;
- background-color: $base-column-second-menu-background-active !important;
- }
- }
- .vab-column-bar-container {
- position: fixed;
- top: 0;
- bottom: 0;
- left: 0;
- width: $base-left-menu-width;
- height: 100vh;
- overflow: hidden;
- background: $base-column-second-menu-background;
- box-shadow: $base-box-shadow;
- ::v-deep {
- * {
- transition: $base-transition;
- }
- }
- &-vertical,
- &-card,
- &-arrow {
- ::v-deep {
- .el-tabs + .el-menu {
- left: $base-left-menu-width-min;
- width: $base-left-menu-width - $base-left-menu-width-min;
- border: 0;
- }
- }
- }
- &-horizontal {
- ::v-deep {
- .logo-container-column {
- .logo {
- width: $base-left-menu-width-min * 1.3 !important;
- }
- .title {
- margin-left: $base-left-menu-width-min * 1.3 !important;
- }
- }
- .el-tabs + .el-menu {
- left: $base-left-menu-width-min * 1.3;
- width: $base-left-menu-width - $base-left-menu-width-min * 1.3;
- border: 0;
- }
- }
- }
- &-card {
- ::v-deep {
- .el-tabs {
- .el-tabs__item {
- padding: 5px !important;
- .vab-column-grid {
- width: $base-left-menu-width-min - 10 !important;
- height: $base-left-menu-width-min - 10 !important;
- border-radius: 5px;
- }
- &.is-active {
- background: transparent !important;
- .vab-column-grid {
- background: $base-color-blue;
- }
- }
- }
- }
- .el-tabs + .el-menu {
- left: $base-left-menu-width-min + 10;
- width: $base-left-menu-width - $base-left-menu-width-min - 20;
- }
- .el-submenu .el-submenu__title,
- .el-menu-item {
- min-width: 180px;
- border-radius: 5px;
- }
- }
- }
- &-arrow {
- ::v-deep {
- .el-tabs {
- .el-tabs__item {
- &.is-active {
- background: transparent !important;
- .vab-column-grid {
- background: transparent !important;
- &:after {
- position: absolute;
- right: 0;
- width: 0;
- height: 0;
- overflow: hidden;
- content: '';
- border-color: transparent #{$base-color-white} transparent transparent;
- border-style: solid dashed dashed;
- border-width: 8px;
- }
- }
- }
- }
- }
- .el-tabs + .el-menu {
- left: $base-left-menu-width-min + 10;
- width: $base-left-menu-width - $base-left-menu-width-min - 20;
- }
- .el-submenu .el-submenu__title,
- .el-menu-item {
- min-width: 180px;
- border-radius: 5px;
- }
- }
- }
- .vab-column-grid {
- display: flex;
- align-items: center;
- width: $base-left-menu-width-min;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- white-space: nowrap;
- &-vertical,
- &-card,
- &-arrow {
- justify-content: center;
- height: $base-left-menu-width-min;
- > div {
- svg {
- position: relative;
- top: 8px;
- display: block;
- width: $base-font-size-default + 4;
- height: $base-font-size-default + 4;
- }
- [class*='ri-'] {
- display: block;
- height: 20px;
- }
- }
- }
- &-horizontal {
- justify-content: left;
- width: $base-left-menu-width-min * 1.3;
- height: $base-left-menu-width-min / 1.3;
- padding-left: $base-padding / 2;
- }
- }
- ::v-deep {
- .el-scrollbar__wrap {
- overflow-x: hidden;
- }
- .el-tabs {
- position: fixed;
- .el-tabs__header.is-left {
- margin-right: 0 !important;
- .el-tabs__nav-wrap.is-left {
- margin-right: 0 !important;
- background: $base-column-first-menu-background;
- .el-tabs__nav-scroll {
- height: 100%;
- overflow-y: auto;
- &::-webkit-scrollbar {
- width: 0px;
- height: 0px;
- }
- }
- }
- }
- .el-tabs__nav {
- height: calc(100vh - #{$base-logo-height});
- background: $base-column-first-menu-background;
- }
- .el-tabs__item {
- height: auto;
- padding: 0;
- color: $base-color-white;
- &.is-active {
- background: $base-color-blue;
- }
- }
- }
- .el-tabs__active-bar.is-left,
- .el-tabs--left .el-tabs__nav-wrap.is-left::after {
- display: none;
- }
- .el-menu {
- border: 0;
- .el-divider {
- margin: 0 0 $base-margin 0;
- background-color: #f6f6f6;
- &__text {
- color: $base-color-black;
- }
- }
- .el-menu-item,
- .el-submenu__title {
- height: $base-menu-item-height;
- overflow: hidden;
- line-height: $base-menu-item-height;
- text-overflow: ellipsis;
- white-space: nowrap;
- vertical-align: middle;
- @include active;
- }
- }
- }
- &.is-collapse {
- ::v-deep {
- width: 0;
- }
- }
- }
- </style>
|