|
@@ -1,15 +1,36 @@
|
|
|
<template>
|
|
|
- <div class="menu" v-if="currentMenu.length">
|
|
|
+ <div class="menu">
|
|
|
<ul class="menu-list">
|
|
|
<li
|
|
|
class="menu-item"
|
|
|
- v-for="(menu, index) of currentMenu"
|
|
|
- :key="menu"
|
|
|
+ v-for="(menu, index) in currentMenu"
|
|
|
+ :key="index"
|
|
|
@click="click(index)"
|
|
|
:class="{ active: activeIndex == index }"
|
|
|
- @mouseenter="subMenuShow(menu.children, index, menu.showChild)"
|
|
|
>
|
|
|
- <router-link v-if="!menu.showChild || !menu.children" :to="menu.path">
|
|
|
+ <router-link
|
|
|
+ :to="menu.path"
|
|
|
+ v-if="menu.children"
|
|
|
+ @mouseenter="subMenuShow(menu.children, index)"
|
|
|
+ >
|
|
|
+ <el-tooltip
|
|
|
+ class="item"
|
|
|
+ effect="dark"
|
|
|
+ :content="menu.text"
|
|
|
+ placement="bottom"
|
|
|
+ :show-after="500"
|
|
|
+ :enterable="false"
|
|
|
+ hide-after="10"
|
|
|
+ >
|
|
|
+ <div
|
|
|
+ class="menu-icon svg-icon"
|
|
|
+ :class="activeIndex == index ? 'svg-icon-green' : 'svg-icon-gray'"
|
|
|
+ >
|
|
|
+ <SvgIcon :svgid="menu.icon"></SvgIcon>
|
|
|
+ </div>
|
|
|
+ </el-tooltip>
|
|
|
+ </router-link>
|
|
|
+ <router-link :to="menu.path" v-else>
|
|
|
<el-tooltip
|
|
|
class="item"
|
|
|
effect="dark"
|
|
@@ -27,7 +48,7 @@
|
|
|
</div>
|
|
|
</el-tooltip>
|
|
|
</router-link>
|
|
|
- <el-tooltip
|
|
|
+ <!-- <el-tooltip
|
|
|
v-else
|
|
|
class="item"
|
|
|
effect="dark"
|
|
@@ -43,29 +64,18 @@
|
|
|
>
|
|
|
<SvgIcon :svgid="menu.icon"></SvgIcon>
|
|
|
</div>
|
|
|
- </el-tooltip>
|
|
|
- <!-- <div v-if="menu.children" class="sub-menu-item">
|
|
|
- <div class="menu-icon svg-icon" :class="activeIndex == index ? 'svg-icon-green' : 'svg-icon-gray'">
|
|
|
- <SvgIcon :svgid="menu.icon"></SvgIcon>
|
|
|
- </div>
|
|
|
- </div> -->
|
|
|
+ </el-tooltip> -->
|
|
|
</li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
- <div
|
|
|
- class="sub-menu"
|
|
|
- v-show="isShowSubMenu"
|
|
|
- @mouseleave="subMenuHide"
|
|
|
- v-if="$store.state.themeName === 'dark'"
|
|
|
- >
|
|
|
+ <div class="sub-menu" v-show="isShowSubMenu" @mouseleave="subMenuHide">
|
|
|
<ul class="menu-list">
|
|
|
<li
|
|
|
- v-show="!menu.path.includes('decision1Mx')"
|
|
|
class="menu-item"
|
|
|
- v-for="(menu, index) of subMenu"
|
|
|
+ v-for="(menu, index) in subMenu"
|
|
|
@click="subclick(index)"
|
|
|
- :key="menu"
|
|
|
- :class="{ active: subIndex == index }"
|
|
|
+ :key="index"
|
|
|
+ :class="{ active: subIndex == parentIndex + '' + index }"
|
|
|
>
|
|
|
<router-link :to="menu.path">
|
|
|
<div class="menu-icon svg-icon">
|
|
@@ -73,7 +83,7 @@
|
|
|
</div>
|
|
|
<div
|
|
|
class="sub-menu-text"
|
|
|
- :class="subIndex == index ? 'green' : 'gray'"
|
|
|
+ :class="subIndex == activeIndex + '' + index ? 'green' : 'gray'"
|
|
|
>
|
|
|
{{ menu.text }}
|
|
|
</div>
|
|
@@ -125,9 +135,9 @@ export default {
|
|
|
],
|
|
|
activeIndex: 0,
|
|
|
isShowSubMenu: false,
|
|
|
- parentIndex: null,
|
|
|
+ parentIndex: -1,
|
|
|
subMenu: [],
|
|
|
- subIndex: null,
|
|
|
+ subIndex: -1,
|
|
|
fixed: true,
|
|
|
};
|
|
|
},
|
|
@@ -141,64 +151,45 @@ export default {
|
|
|
this.activeIndex = index;
|
|
|
this.subIndex = null;
|
|
|
},
|
|
|
- subMenuShow(children, index, flag) {
|
|
|
- if (flag != undefined && !flag) {
|
|
|
- this.isShowSubMenu = false;
|
|
|
- this.parentIndex = index;
|
|
|
- this.subMenu = children;
|
|
|
- } else {
|
|
|
- if (children) {
|
|
|
- this.isShowSubMenu = true;
|
|
|
- this.parentIndex = index;
|
|
|
- } else {
|
|
|
- this.isShowSubMenu = false;
|
|
|
- this.parentIndex = null;
|
|
|
- }
|
|
|
- this.subMenu = children;
|
|
|
- }
|
|
|
+ subMenuShow(children, index) {
|
|
|
+ this.isShowSubMenu = true;
|
|
|
+ this.parentIndex = index;
|
|
|
+ this.subMenu = children;
|
|
|
},
|
|
|
subMenuHide() {
|
|
|
this.isShowSubMenu = false;
|
|
|
- this.parentIndex = null;
|
|
|
- // this.subMenu = [];
|
|
|
+ this.parentIndex = -1;
|
|
|
+ this.subMenu = [];
|
|
|
},
|
|
|
subclick(index) {
|
|
|
this.activeIndex = this.parentIndex;
|
|
|
- this.subIndex = index;
|
|
|
+ this.subIndex = this.activeIndex + "" + index;
|
|
|
+ this.isShowSubMenu = false;
|
|
|
},
|
|
|
},
|
|
|
|
|
|
computed: {
|
|
|
currentMenu() {
|
|
|
- let stateRoutes = this.$store.state.routes.routes;
|
|
|
+ let stateRoutes = JSON.parse(
|
|
|
+ JSON.stringify(this.$store.state.routes.routes)
|
|
|
+ );
|
|
|
|
|
|
if (stateRoutes.length) {
|
|
|
- let routeObj = this.$store.state.routes.routes.find(
|
|
|
- (i) => i.path == "/" + this.currRoot
|
|
|
- );
|
|
|
+ let routeObj = stateRoutes.find((i) => i.path == "/" + this.currRoot);
|
|
|
let currData = [];
|
|
|
- if (Object.keys(routeObj).length) {
|
|
|
+ if (routeObj && Object.keys(routeObj).length) {
|
|
|
let a = JSON.parse(JSON.stringify(routeObj));
|
|
|
if (a.children) {
|
|
|
a.children.forEach((path) => {
|
|
|
if (!path.hidden) {
|
|
|
- if (path.children) {
|
|
|
- if (path.showChild) {
|
|
|
- currData.push({
|
|
|
- text: path.meta.title,
|
|
|
- icon: path.meta.icon,
|
|
|
- path: `/${this.currRoot}/${path.path}`,
|
|
|
- children: [],
|
|
|
- showChild: false,
|
|
|
- });
|
|
|
- } else {
|
|
|
- currData.push({
|
|
|
- text: path.meta.title,
|
|
|
- icon: path.meta.icon,
|
|
|
- path: `/${this.currRoot}/${path.path}`,
|
|
|
- children: [],
|
|
|
- });
|
|
|
- }
|
|
|
+ if (path.showChild != true && path.children) {
|
|
|
+ currData.push({
|
|
|
+ text: path.meta.title,
|
|
|
+ icon: path.meta.icon,
|
|
|
+ fullPath: path.path,
|
|
|
+ path: `/${this.currRoot}/${path.path}`,
|
|
|
+ children: [],
|
|
|
+ });
|
|
|
|
|
|
let cu = currData.find((i) => i.text == path.meta.title);
|
|
|
path.children.forEach((cputh) => {
|
|
@@ -208,38 +199,42 @@ export default {
|
|
|
0,
|
|
|
cputh.path.indexOf("/:")
|
|
|
)}/SXJ_KGDL_GJY_FDC_STA/SXJ_KGDL_GJY_F_WT_0001_EQ`;
|
|
|
+ } else if (cputh.path == "decision1Mx") {
|
|
|
+ caputh = "";
|
|
|
} else {
|
|
|
caputh = cputh.path;
|
|
|
}
|
|
|
- cu["children"].push({
|
|
|
- text: cputh.meta.title,
|
|
|
- icon: cputh.meta.icon,
|
|
|
- path: `/${this.currRoot}/${path.path}/${caputh}`,
|
|
|
- });
|
|
|
+ if (caputh.length) {
|
|
|
+ cu["children"].push({
|
|
|
+ text: cputh.meta.title,
|
|
|
+ icon: cputh.meta.icon,
|
|
|
+ path: `/${this.currRoot}/${path.path}/${caputh}`,
|
|
|
+ });
|
|
|
+ }
|
|
|
});
|
|
|
cu.path = cu.children[0].path;
|
|
|
} else {
|
|
|
currData.push({
|
|
|
text: path.meta.title,
|
|
|
icon: path.meta.icon,
|
|
|
+ fullPath: path.path,
|
|
|
path: `/${this.currRoot}/${path.path}`,
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
});
|
|
|
-
|
|
|
- this.$store.dispatch("changeMenuData", currData);
|
|
|
+ this.$store.commit("changeMenuData", currData);
|
|
|
return currData;
|
|
|
} else {
|
|
|
- this.$store.dispatch("changeMenuData", []);
|
|
|
+ this.$store.commit("changeMenuData", []);
|
|
|
return [];
|
|
|
}
|
|
|
} else {
|
|
|
- this.$store.dispatch("changeMenuData", []);
|
|
|
+ this.$store.commit("changeMenuData", []);
|
|
|
return [];
|
|
|
}
|
|
|
} else {
|
|
|
- this.$store.dispatch("changeMenuData", []);
|
|
|
+ this.$store.commit("changeMenuData", []);
|
|
|
return [];
|
|
|
}
|
|
|
},
|
|
@@ -266,9 +261,16 @@ export default {
|
|
|
this.$nextTick(() => {
|
|
|
this.currRoot = element.id;
|
|
|
this.$nextTick(() => {
|
|
|
- this.currentMenu.some((element, index) => {
|
|
|
- if (val.path == element.path) {
|
|
|
+ this.currentMenu.forEach((element, index) => {
|
|
|
+ if (val.path.includes(element.fullPath)) {
|
|
|
this.activeIndex = index;
|
|
|
+ element.children &&
|
|
|
+ element.children.forEach((i, inx) => {
|
|
|
+ if (val.path == i.path) {
|
|
|
+ this.subIndex = index + "" + inx;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
});
|
|
|
});
|