index.vue 5.9 KB

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