index.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <template>
  2. <el-dialog :modal="true" custom-class="testgks" width="20vw" :before-close="closeMenuHandler" :visible.sync="isShowMenu">
  3. <el-menu :default-active="activeMenu" mode="horizontal" @select="handleSelect">
  4. <template v-for="(item, index) in topMenus">
  5. <el-menu-item :style="{ '--theme': theme }" :index="item.path" :key="index"
  6. v-if="index < visibleNumber"><svg-icon :icon-class="item.meta.icon" />
  7. {{ item.meta.title }}</el-menu-item>
  8. </template>
  9. <!-- 顶部菜单超出数量折叠 -->
  10. <el-submenu :style="{ '--theme': theme }" index="more" v-if="topMenus.length > visibleNumber">
  11. <template slot="title">更多菜单</template>
  12. <template v-for="(item, index) in topMenus">
  13. <el-menu-item :index="item.path" :key="index" v-if="index >= visibleNumber"><svg-icon
  14. :icon-class="item.meta.icon" />
  15. {{ item.meta.title }}</el-menu-item>
  16. </template>
  17. </el-submenu>
  18. </el-menu>
  19. </el-dialog>
  20. </template>
  21. <script>
  22. import { constantRoutes } from "@/router";
  23. // 隐藏侧边栏路由
  24. const hideList = ['/index', '/user/profile'];
  25. export default {
  26. props: {
  27. isShowMenu: {
  28. type: Boolean,
  29. default: false,
  30. }
  31. },
  32. data() {
  33. return {
  34. // 顶部栏初始数
  35. visibleNumber: 5,
  36. // 当前激活菜单的 index
  37. currentIndex: undefined
  38. };
  39. },
  40. computed: {
  41. theme() {
  42. return this.$store.state.settings.theme;
  43. },
  44. // 顶部显示菜单
  45. topMenus() {
  46. let topMenus = [];
  47. this.routers.map((menu) => {
  48. if (menu.hidden !== true) {
  49. // 兼容顶部栏一级菜单内部跳转
  50. if (menu.path === "/") {
  51. topMenus.push(menu.children[0]);
  52. } else {
  53. topMenus.push(menu);
  54. }
  55. }
  56. });
  57. return topMenus;
  58. },
  59. // 所有的路由信息
  60. routers() {
  61. return this.$store.state.permission.topbarRouters;
  62. },
  63. // 设置子路由
  64. childrenMenus() {
  65. var childrenMenus = [];
  66. this.routers.map((router) => {
  67. for (var item in router.children) {
  68. if (router.children[item].parentPath === undefined) {
  69. if (router.path === "/") {
  70. router.children[item].path = "/" + router.children[item].path;
  71. } else {
  72. if (!this.ishttp(router.children[item].path)) {
  73. router.children[item].path = router.path + "/" + router.children[item].path;
  74. }
  75. }
  76. router.children[item].parentPath = router.path;
  77. }
  78. childrenMenus.push(router.children[item]);
  79. }
  80. });
  81. return constantRoutes.concat(childrenMenus);
  82. },
  83. // 默认激活的菜单
  84. activeMenu() {
  85. const path = this.$route.path;
  86. let activePath = path;
  87. if (path !== undefined && path.lastIndexOf("/") > 0 && hideList.indexOf(path) === -1) {
  88. const tmpPath = path.substring(1, path.length);
  89. activePath = "/" + tmpPath.substring(0, tmpPath.indexOf("/"));
  90. this.$store.dispatch('app/toggleSideBarHide', false);
  91. } else if (!this.$route.children) {
  92. activePath = path;
  93. this.$store.dispatch('app/toggleSideBarHide', true);
  94. }
  95. this.activeRoutes(activePath);
  96. return activePath;
  97. },
  98. },
  99. beforeMount() {
  100. window.addEventListener('resize', this.setVisibleNumber)
  101. },
  102. beforeDestroy() {
  103. window.removeEventListener('resize', this.setVisibleNumber)
  104. },
  105. mounted() {
  106. this.setVisibleNumber();
  107. },
  108. methods: {
  109. closeMenuHandler() {
  110. this.$emit("closeMenuHandler");
  111. },
  112. // 根据宽度计算设置显示栏数
  113. setVisibleNumber() {
  114. const width = document.body.getBoundingClientRect().width / 3;
  115. this.visibleNumber = parseInt(width / 85);
  116. },
  117. // 菜单选择事件
  118. handleSelect(key, keyPath) {
  119. console.log(key);
  120. this.currentIndex = key;
  121. const route = this.routers.find(item => item.path === key);
  122. if (this.ishttp(key)) {
  123. // http(s):// 路径新窗口打开
  124. window.open(key, "_blank");
  125. } else if (!route || !route.children) {
  126. // 没有子路由路径内部打开
  127. this.$router.push({ path: key });
  128. this.$store.dispatch('app/toggleSideBarHide', true);
  129. } else {
  130. // 显示左侧联动菜单
  131. this.activeRoutes(key);
  132. this.$store.dispatch('app/toggleSideBarHide', false);
  133. }
  134. },
  135. // 当前激活的路由
  136. activeRoutes(key) {
  137. var routes = [];
  138. if (this.childrenMenus && this.childrenMenus.length > 0) {
  139. this.childrenMenus.map((item) => {
  140. if (key == item.parentPath || (key == "index" && "" == item.path)) {
  141. routes.push(item);
  142. }
  143. });
  144. }
  145. if (routes.length > 0) {
  146. this.$store.commit("SET_SIDEBAR_ROUTERS", routes);
  147. }
  148. },
  149. ishttp(url) {
  150. return url.indexOf('http://') !== -1 || url.indexOf('https://') !== -1
  151. }
  152. },
  153. };
  154. </script>
  155. <style lang="scss">
  156. .testgks {
  157. margin-left: 12vw;
  158. }
  159. .topmenu-container.el-menu--horizontal>.el-menu-item {
  160. float: left;
  161. height: 50px !important;
  162. line-height: 50px !important;
  163. color: #999093 !important;
  164. padding: 0 5px !important;
  165. margin: 0 10px !important;
  166. }
  167. .topmenu-container.el-menu--horizontal>.el-menu-item.is-active,
  168. .el-menu--horizontal>.el-submenu.is-active .el-submenu__title {
  169. border-bottom: 2px solid #{'var(--theme)'} !important;
  170. color: #303133;
  171. }
  172. /* submenu item */
  173. .topmenu-container.el-menu--horizontal>.el-submenu .el-submenu__title {
  174. float: left;
  175. height: 50px !important;
  176. line-height: 50px !important;
  177. color: #999093 !important;
  178. padding: 0 5px !important;
  179. margin: 0 10px !important;
  180. }
  181. .el-dialog>.el-dialog__body {
  182. padding: 0 !important;
  183. }
  184. </style>