index.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <template>
  2. <el-scrollbar class="side-bar-container" :class="{ 'is-collapse': collapse }">
  3. <vab-logo />
  4. <el-menu
  5. :background-color="variables['menu-background']"
  6. :text-color="variables['menu-color']"
  7. :active-text-color="variables['menu-color-active']"
  8. :default-active="activeMenu"
  9. :collapse="collapse"
  10. :collapse-transition="false"
  11. :default-openeds="defaultOpens"
  12. :unique-opened="uniqueOpened"
  13. mode="vertical"
  14. >
  15. <template v-for="route in routes" :key="route.path">
  16. <vab-side-bar-item :full-path="route.path" :item="route" />
  17. </template>
  18. </el-menu>
  19. </el-scrollbar>
  20. </template>
  21. <script>
  22. import variables from '@/styles/variables.scss'
  23. import { mapGetters } from 'vuex'
  24. import { defaultOopeneds, uniqueOpened } from '@/config'
  25. export default {
  26. name: 'VabSideBar',
  27. data() {
  28. return {
  29. uniqueOpened,
  30. }
  31. },
  32. computed: {
  33. ...mapGetters({
  34. collapse: 'settings/collapse',
  35. routes: 'routes/routes',
  36. }),
  37. defaultOpens() {
  38. if (this.collapse) {
  39. }
  40. return defaultOopeneds
  41. },
  42. activeMenu() {
  43. const route = this.$route
  44. const { meta, path } = route
  45. if (meta.activeMenu) {
  46. return meta.activeMenu
  47. }
  48. return path
  49. },
  50. variables() {
  51. return variables
  52. },
  53. },
  54. }
  55. </script>
  56. <style lang="scss" scoped>
  57. @mixin active {
  58. &:hover {
  59. color: $base-color-white;
  60. background-color: $base-menu-background-active !important;
  61. }
  62. &.is-active {
  63. color: $base-color-white;
  64. background-color: $base-menu-background-active !important;
  65. }
  66. }
  67. .side-bar-container {
  68. position: fixed;
  69. top: 0;
  70. bottom: 0;
  71. left: 0;
  72. z-index: $base-z-index;
  73. width: $base-left-menu-width;
  74. height: 100vh;
  75. overflow: hidden;
  76. background: $base-menu-background;
  77. box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
  78. transition: width $base-transition-time;
  79. &.is-collapse {
  80. width: $base-left-menu-width-min;
  81. border-right: 0;
  82. ::v-deep {
  83. .el-menu {
  84. transition: width $base-transition-time;
  85. }
  86. .el-menu--collapse {
  87. border-right: 0;
  88. .el-submenu__icon-arrow {
  89. right: 10px;
  90. margin-top: -3px;
  91. }
  92. }
  93. }
  94. }
  95. ::v-deep {
  96. .el-scrollbar__wrap {
  97. overflow-x: hidden;
  98. }
  99. .el-menu {
  100. border: 0;
  101. .vab-fas-icon {
  102. padding-right: 3px;
  103. font-size: $base-font-size-default;
  104. }
  105. .vab-remix-icon {
  106. padding-right: 3px;
  107. font-size: $base-font-size-default + 2;
  108. }
  109. }
  110. .el-menu-item,
  111. .el-submenu__title {
  112. height: $base-menu-item-height;
  113. line-height: $base-menu-item-height;
  114. vertical-align: middle;
  115. }
  116. .el-menu-item {
  117. @include active;
  118. }
  119. }
  120. }
  121. </style>