|
@@ -1,6 +1,6 @@
|
|
<template>
|
|
<template>
|
|
- <el-dialog :modal="false" :before-close="closeMenuHandler" :visible.sync="isShowMenu" :fullscreen="true">
|
|
|
|
- <el-menu :default-active="activeMenu" mode="horizontal" @select="handleSelect">
|
|
|
|
|
|
+ <el-dialog :modal="true" placement="left" class="abc" :before-close="closeMenuHandler" :visible.sync="isShowMenu">
|
|
|
|
+ <el-menu :default-active="activeMenu" class="test" mode="horizontal" @select="handleSelect">
|
|
<template v-for="(item, index) in topMenus">
|
|
<template v-for="(item, index) in topMenus">
|
|
<el-menu-item :style="{ '--theme': theme }" :index="item.path" :key="index" v-if="index < visibleNumber"><svg-icon
|
|
<el-menu-item :style="{ '--theme': theme }" :index="item.path" :key="index" v-if="index < visibleNumber"><svg-icon
|
|
:icon-class="item.meta.icon" />
|
|
:icon-class="item.meta.icon" />
|
|
@@ -111,7 +111,7 @@ export default {
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
|
|
- closeMenuHandler(){
|
|
|
|
|
|
+ closeMenuHandler() {
|
|
this.$emit("closeMenuHandler");
|
|
this.$emit("closeMenuHandler");
|
|
},
|
|
},
|
|
|
|
|
|
@@ -122,6 +122,7 @@ export default {
|
|
},
|
|
},
|
|
// 菜单选择事件
|
|
// 菜单选择事件
|
|
handleSelect(key, keyPath) {
|
|
handleSelect(key, keyPath) {
|
|
|
|
+ console.log(key);
|
|
this.currentIndex = key;
|
|
this.currentIndex = key;
|
|
const route = this.routers.find(item => item.path === key);
|
|
const route = this.routers.find(item => item.path === key);
|
|
if (this.ishttp(key)) {
|
|
if (this.ishttp(key)) {
|
|
@@ -159,6 +160,12 @@ export default {
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
<style scoped lang="scss">
|
|
|
|
+.el-dialog__wrapper>.el-dialog {
|
|
|
|
+ margin-top: 10vh;
|
|
|
|
+
|
|
|
|
+ background: red;
|
|
|
|
+}
|
|
|
|
+
|
|
.topmenu-container.el-menu--horizontal>.el-menu-item {
|
|
.topmenu-container.el-menu--horizontal>.el-menu-item {
|
|
float: left;
|
|
float: left;
|
|
height: 50px !important;
|
|
height: 50px !important;
|
|
@@ -184,7 +191,7 @@ export default {
|
|
margin: 0 10px !important;
|
|
margin: 0 10px !important;
|
|
}
|
|
}
|
|
|
|
|
|
-.el-dialog > .el-dialog__body{
|
|
|
|
|
|
+.el-dialog>.el-dialog__body {
|
|
padding: 0 !important;
|
|
padding: 0 !important;
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|