|
@@ -1,42 +1,33 @@
|
|
|
<template>
|
|
|
- <el-dialog :modal="false" custom-class="testgks" width="20vw" :before-close="closeMenuHandler" :visible.sync="isShowMenu">
|
|
|
- <el-menu :default-active="activeMenu" mode="horizontal" @select="handleSelect">
|
|
|
- <template v-for="(item, index) in topMenus">
|
|
|
- <el-menu-item :style="{ '--theme': theme }" :index="item.path" :key="index"
|
|
|
- v-if="index < visibleNumber"><svg-icon :icon-class="item.meta.icon" />
|
|
|
- {{ item.meta.title }}</el-menu-item>
|
|
|
- </template>
|
|
|
-
|
|
|
- <!-- 顶部菜单超出数量折叠 -->
|
|
|
- <el-submenu :style="{ '--theme': theme }" index="more" v-if="topMenus.length > visibleNumber">
|
|
|
- <template slot="title">更多菜单</template>
|
|
|
- <template v-for="(item, index) in topMenus">
|
|
|
- <el-menu-item :index="item.path" :key="index" v-if="index >= visibleNumber"><svg-icon
|
|
|
- :icon-class="item.meta.icon" />
|
|
|
- {{ item.meta.title }}</el-menu-item>
|
|
|
- </template>
|
|
|
- </el-submenu>
|
|
|
- </el-menu>
|
|
|
- </el-dialog>
|
|
|
+ <el-popover :default-active="activeMenu" placement="bottom" width="400" trigger="click" style="margin-top: 44px" v-model="isShowMenu">
|
|
|
+ <div class="cbox">
|
|
|
+ <div class="lable">菜单入口</div>
|
|
|
+ <div class="menu" v-for="(item, index) in topMenus" @click="handleSelect(item)">
|
|
|
+ <div class="out">
|
|
|
+ <div class="int">
|
|
|
+ <div class="icon"><svg-icon :icon-class="item.meta.icon" /></div>
|
|
|
+ <div class="desc">{{ item.meta.title }}</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div slot="reference" class="reference" >
|
|
|
+ <span class="icon"></span>
|
|
|
+ <div class="mtt">应用中心</div>
|
|
|
+ </div>
|
|
|
+ </el-popover>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { constantRoutes } from "@/router";
|
|
|
+import { constantRoutes } from '@/router';
|
|
|
|
|
|
// 隐藏侧边栏路由
|
|
|
const hideList = ['/index', '/user/profile'];
|
|
|
|
|
|
export default {
|
|
|
- props: {
|
|
|
- isShowMenu: {
|
|
|
- type: Boolean,
|
|
|
- default: false,
|
|
|
- }
|
|
|
- },
|
|
|
data() {
|
|
|
return {
|
|
|
- // 顶部栏初始数
|
|
|
- visibleNumber: 5,
|
|
|
+ isShowMenu: false,
|
|
|
// 当前激活菜单的 index
|
|
|
currentIndex: undefined
|
|
|
};
|
|
@@ -48,10 +39,10 @@ export default {
|
|
|
// 顶部显示菜单
|
|
|
topMenus() {
|
|
|
let topMenus = [];
|
|
|
- this.routers.map((menu) => {
|
|
|
+ this.routers.map(menu => {
|
|
|
if (menu.hidden !== true) {
|
|
|
// 兼容顶部栏一级菜单内部跳转
|
|
|
- if (menu.path === "/") {
|
|
|
+ if (menu.path === '/') {
|
|
|
topMenus.push(menu.children[0]);
|
|
|
} else {
|
|
|
topMenus.push(menu);
|
|
@@ -67,14 +58,14 @@ export default {
|
|
|
// 设置子路由
|
|
|
childrenMenus() {
|
|
|
var childrenMenus = [];
|
|
|
- this.routers.map((router) => {
|
|
|
+ this.routers.map(router => {
|
|
|
for (var item in router.children) {
|
|
|
if (router.children[item].parentPath === undefined) {
|
|
|
- if (router.path === "/") {
|
|
|
- router.children[item].path = "/" + router.children[item].path;
|
|
|
+ if (router.path === '/') {
|
|
|
+ router.children[item].path = '/' + router.children[item].path;
|
|
|
} else {
|
|
|
if (!this.ishttp(router.children[item].path)) {
|
|
|
- router.children[item].path = router.path + "/" + router.children[item].path;
|
|
|
+ router.children[item].path = router.path + '/' + router.children[item].path;
|
|
|
}
|
|
|
}
|
|
|
router.children[item].parentPath = router.path;
|
|
@@ -88,9 +79,9 @@ export default {
|
|
|
activeMenu() {
|
|
|
const path = this.$route.path;
|
|
|
let activePath = path;
|
|
|
- if (path !== undefined && path.lastIndexOf("/") > 0 && hideList.indexOf(path) === -1) {
|
|
|
+ if (path !== undefined && path.lastIndexOf('/') > 0 && hideList.indexOf(path) === -1) {
|
|
|
const tmpPath = path.substring(1, path.length);
|
|
|
- activePath = "/" + tmpPath.substring(0, tmpPath.indexOf("/"));
|
|
|
+ activePath = '/' + tmpPath.substring(0, tmpPath.indexOf('/'));
|
|
|
this.$store.dispatch('app/toggleSideBarHide', false);
|
|
|
} else if (!this.$route.children) {
|
|
|
activePath = path;
|
|
@@ -98,21 +89,20 @@ export default {
|
|
|
}
|
|
|
this.activeRoutes(activePath);
|
|
|
return activePath;
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
beforeMount() {
|
|
|
- window.addEventListener('resize', this.setVisibleNumber)
|
|
|
+ window.addEventListener('resize', this.setVisibleNumber);
|
|
|
},
|
|
|
beforeDestroy() {
|
|
|
- window.removeEventListener('resize', this.setVisibleNumber)
|
|
|
+ window.removeEventListener('resize', this.setVisibleNumber);
|
|
|
},
|
|
|
mounted() {
|
|
|
this.setVisibleNumber();
|
|
|
},
|
|
|
methods: {
|
|
|
-
|
|
|
closeMenuHandler() {
|
|
|
- this.$emit("closeMenuHandler");
|
|
|
+ this.$emit('closeMenuHandler');
|
|
|
},
|
|
|
|
|
|
// 根据宽度计算设置显示栏数
|
|
@@ -121,12 +111,14 @@ export default {
|
|
|
this.visibleNumber = parseInt(width / 85);
|
|
|
},
|
|
|
// 菜单选择事件
|
|
|
- handleSelect(key, keyPath) {
|
|
|
- this.currentIndex = key;
|
|
|
+ handleSelect(item) {
|
|
|
+ this.isShowMenu = false;
|
|
|
+ this.currentIndex = item.path;
|
|
|
+ let key = item.path;
|
|
|
const route = this.routers.find(item => item.path === key);
|
|
|
if (this.ishttp(key)) {
|
|
|
// http(s):// 路径新窗口打开
|
|
|
- window.open(key, "_blank");
|
|
|
+ window.open(key, '_blank');
|
|
|
} else if (!route || !route.children) {
|
|
|
// 没有子路由路径内部打开
|
|
|
this.$router.push({ path: key });
|
|
@@ -136,27 +128,27 @@ export default {
|
|
|
this.activeRoutes(key);
|
|
|
this.$store.dispatch('app/toggleSideBarHide', false);
|
|
|
}
|
|
|
- this.$emit("showHamBurger");
|
|
|
- this.$emit("closeMenuHandler");
|
|
|
+ this.$emit('showHamBurger');
|
|
|
+ this.$emit('closeMenuHandler');
|
|
|
},
|
|
|
// 当前激活的路由
|
|
|
activeRoutes(key) {
|
|
|
var routes = [];
|
|
|
if (this.childrenMenus && this.childrenMenus.length > 0) {
|
|
|
- this.childrenMenus.map((item) => {
|
|
|
- if (key == item.parentPath || (key == "index" && "" == item.path)) {
|
|
|
+ this.childrenMenus.map(item => {
|
|
|
+ if (key == item.parentPath || (key == 'index' && '' == item.path)) {
|
|
|
routes.push(item);
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
if (routes.length > 0) {
|
|
|
- this.$store.commit("SET_SIDEBAR_ROUTERS", routes);
|
|
|
+ this.$store.commit('SET_SIDEBAR_ROUTERS', routes);
|
|
|
}
|
|
|
},
|
|
|
ishttp(url) {
|
|
|
- return url.indexOf('http://') !== -1 || url.indexOf('https://') !== -1
|
|
|
+ return url.indexOf('http://') !== -1 || url.indexOf('https://') !== -1;
|
|
|
}
|
|
|
- },
|
|
|
+ }
|
|
|
};
|
|
|
</script>
|
|
|
|
|
@@ -164,10 +156,7 @@ export default {
|
|
|
.testgks {
|
|
|
margin-left: 12vw;
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-.topmenu-container.el-menu--horizontal>.el-menu-item {
|
|
|
+.topmenu-container.el-menu--horizontal > .el-menu-item {
|
|
|
float: left;
|
|
|
height: 50px !important;
|
|
|
line-height: 50px !important;
|
|
@@ -176,14 +165,14 @@ export default {
|
|
|
margin: 0 10px !important;
|
|
|
}
|
|
|
|
|
|
-.topmenu-container.el-menu--horizontal>.el-menu-item.is-active,
|
|
|
-.el-menu--horizontal>.el-submenu.is-active .el-submenu__title {
|
|
|
+.topmenu-container.el-menu--horizontal > .el-menu-item.is-active,
|
|
|
+.el-menu--horizontal > .el-submenu.is-active .el-submenu__title {
|
|
|
border-bottom: 2px solid #{'var(--theme)'} !important;
|
|
|
color: #303133;
|
|
|
}
|
|
|
|
|
|
/* submenu item */
|
|
|
-.topmenu-container.el-menu--horizontal>.el-submenu .el-submenu__title {
|
|
|
+.topmenu-container.el-menu--horizontal > .el-submenu .el-submenu__title {
|
|
|
float: left;
|
|
|
height: 50px !important;
|
|
|
line-height: 50px !important;
|
|
@@ -191,4 +180,42 @@ export default {
|
|
|
padding: 0 5px !important;
|
|
|
margin: 0 10px !important;
|
|
|
}
|
|
|
+.reference {
|
|
|
+ margin-top: -2px;
|
|
|
+ .mtt {
|
|
|
+ margin-top: -24px;
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-popper {
|
|
|
+ top: 44px !important;
|
|
|
+}
|
|
|
+.menu {
|
|
|
+ float: left;
|
|
|
+ width: 33.33%;
|
|
|
+ .out {
|
|
|
+ padding: 10px;
|
|
|
+ .int {
|
|
|
+ padding: 10px 10px 0px 10px;
|
|
|
+ text-align: center;
|
|
|
+ cursor: pointer;
|
|
|
+ .icon {
|
|
|
+ width: 45px;
|
|
|
+ height: 45px;
|
|
|
+ color: white;
|
|
|
+ border-radius: 12px;
|
|
|
+ margin: 0 auto;
|
|
|
+ font-size: 23px;
|
|
|
+ line-height: 45px;
|
|
|
+ background-color: rgb(37, 97, 239);
|
|
|
+ color: white;
|
|
|
+ }
|
|
|
+ .desc {
|
|
|
+ color: #545555;
|
|
|
+ margin-top: 9px;
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|