Menu.vue 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. <template>
  2. <div class="menu" v-if="currentMenu.length">
  3. <ul class="menu-list">
  4. <li
  5. class="menu-item"
  6. v-for="(menu, index) of currentMenu"
  7. :key="menu"
  8. @click="click(index)"
  9. :class="{ active: activeIndex == index }"
  10. @mouseenter="subMenuShow(menu.children, index, menu.showChild)"
  11. >
  12. <router-link v-if="!menu.showChild || !menu.children" :to="menu.path">
  13. <el-tooltip
  14. class="item"
  15. effect="dark"
  16. :content="menu.text"
  17. placement="bottom"
  18. :show-after="500"
  19. :enterable="false"
  20. hide-after="10"
  21. >
  22. <div
  23. class="menu-icon svg-icon"
  24. :class="activeIndex == index ? 'svg-icon-green' : 'svg-icon-gray'"
  25. >
  26. <SvgIcon :svgid="menu.icon"></SvgIcon>
  27. </div>
  28. </el-tooltip>
  29. </router-link>
  30. <el-tooltip
  31. v-else
  32. class="item"
  33. effect="dark"
  34. :content="menu.text"
  35. placement="bottom"
  36. :show-after="500"
  37. :enterable="false"
  38. hide-after="10"
  39. >
  40. <div
  41. class="menu-icon svg-icon"
  42. :class="activeIndex == index ? 'svg-icon-green' : 'svg-icon-gray'"
  43. >
  44. <SvgIcon :svgid="menu.icon"></SvgIcon>
  45. </div>
  46. </el-tooltip>
  47. <!-- <div v-if="menu.children" class="sub-menu-item">
  48. <div class="menu-icon svg-icon" :class="activeIndex == index ? 'svg-icon-green' : 'svg-icon-gray'">
  49. <SvgIcon :svgid="menu.icon"></SvgIcon>
  50. </div>
  51. </div> -->
  52. </li>
  53. </ul>
  54. </div>
  55. <div
  56. class="sub-menu"
  57. v-show="isShowSubMenu"
  58. @mouseleave="subMenuHide"
  59. v-if="$store.state.themeName === 'dark'"
  60. >
  61. <ul class="menu-list">
  62. <li
  63. v-show="!menu.path.includes('decision1Mx')"
  64. class="menu-item"
  65. v-for="(menu, index) of subMenu"
  66. @click="subclick(index)"
  67. :key="menu"
  68. :class="{ active: subIndex == index }"
  69. >
  70. <router-link :to="menu.path">
  71. <div class="menu-icon svg-icon">
  72. <!-- <SvgIcon :svgid="menu.icon"></SvgIcon> -->
  73. </div>
  74. <div
  75. class="sub-menu-text"
  76. :class="subIndex == index ? 'green' : 'gray'"
  77. >
  78. {{ menu.text }}
  79. </div>
  80. </router-link>
  81. </li>
  82. </ul>
  83. </div>
  84. <div
  85. class="icon-fixed svg-icon"
  86. :class="fixed ? 'svg-icon-green' : 'svg-icon-gray'"
  87. @click="handleClickFixed"
  88. >
  89. <SvgIcon svgid="svg-unfixed" v-if="fixed == false"></SvgIcon>
  90. <SvgIcon svgid="svg-fixed" v-if="fixed == true"></SvgIcon>
  91. </div>
  92. </template>
  93. <script>
  94. import SvgIcon from "@com/coms/icon/svg-icon.vue";
  95. import { fillterMenuRoutes } from "@/utills/handleRoutes.js";
  96. export default {
  97. components: {
  98. SvgIcon,
  99. },
  100. props: {},
  101. data() {
  102. return {
  103. currRoot: "home",
  104. menuData: [
  105. {
  106. id: "stateMonitor",
  107. text: "全景监视",
  108. data: [],
  109. },
  110. {
  111. id: "economicsOperation",
  112. text: "经济运行",
  113. data: [],
  114. },
  115. {
  116. id: "health",
  117. text: "智慧检修",
  118. data: [],
  119. },
  120. {
  121. id: "others",
  122. text: "智能报表",
  123. data: [],
  124. },
  125. ],
  126. activeIndex: 0,
  127. isShowSubMenu: false,
  128. parentIndex: null,
  129. subMenu: [],
  130. subIndex: null,
  131. fixed: true,
  132. };
  133. },
  134. methods: {
  135. handleClickFixed() {
  136. this.fixed = !this.fixed;
  137. this.$store.commit("changeIsFixed", this.fixed);
  138. },
  139. fillterMenuRoutes,
  140. click(index) {
  141. this.activeIndex = index;
  142. this.subIndex = null;
  143. },
  144. subMenuShow(children, index, flag) {
  145. if (flag != undefined && !flag) {
  146. this.isShowSubMenu = false;
  147. this.parentIndex = index;
  148. this.subMenu = children;
  149. } else {
  150. if (children) {
  151. this.isShowSubMenu = true;
  152. this.parentIndex = index;
  153. } else {
  154. this.isShowSubMenu = false;
  155. this.parentIndex = null;
  156. }
  157. this.subMenu = children;
  158. }
  159. },
  160. subMenuHide() {
  161. this.isShowSubMenu = false;
  162. this.parentIndex = null;
  163. // this.subMenu = [];
  164. },
  165. subclick(index) {
  166. this.activeIndex = this.parentIndex;
  167. this.subIndex = index;
  168. },
  169. },
  170. computed: {
  171. currentMenu() {
  172. let stateRoutes = this.$store.state.routes.routes;
  173. if (stateRoutes.length) {
  174. let routeObj = this.$store.state.routes.routes.find(
  175. (i) => i.path == "/" + this.currRoot
  176. );
  177. let currData = [];
  178. if (Object.keys(routeObj).length) {
  179. let a = JSON.parse(JSON.stringify(routeObj));
  180. if (a.children) {
  181. a.children.forEach((path) => {
  182. if (!path.hidden) {
  183. if (path.children) {
  184. if (path.showChild) {
  185. currData.push({
  186. text: path.meta.title,
  187. icon: path.meta.icon,
  188. path: `/${this.currRoot}/${path.path}`,
  189. children: [],
  190. showChild: false,
  191. });
  192. } else {
  193. currData.push({
  194. text: path.meta.title,
  195. icon: path.meta.icon,
  196. path: `/${this.currRoot}/${path.path}`,
  197. children: [],
  198. });
  199. }
  200. let cu = currData.find((i) => i.text == path.meta.title);
  201. path.children.forEach((cputh) => {
  202. let caputh = "";
  203. if (cputh.path.includes(":")) {
  204. caputh = `${cputh.path.substring(
  205. 0,
  206. cputh.path.indexOf("/:")
  207. )}/SXJ_KGDL_GJY_FDC_STA/SXJ_KGDL_GJY_F_WT_0001_EQ`;
  208. } else {
  209. caputh = cputh.path;
  210. }
  211. cu["children"].push({
  212. text: cputh.meta.title,
  213. icon: cputh.meta.icon,
  214. path: `/${this.currRoot}/${path.path}/${caputh}`,
  215. });
  216. });
  217. cu.path = cu.children[0].path;
  218. } else {
  219. currData.push({
  220. text: path.meta.title,
  221. icon: path.meta.icon,
  222. path: `/${this.currRoot}/${path.path}`,
  223. });
  224. }
  225. }
  226. });
  227. this.$store.dispatch("changeMenuData", currData);
  228. return currData;
  229. } else {
  230. this.$store.dispatch("changeMenuData", []);
  231. return [];
  232. }
  233. } else {
  234. this.$store.dispatch("changeMenuData", []);
  235. return [];
  236. }
  237. } else {
  238. this.$store.dispatch("changeMenuData", []);
  239. return [];
  240. }
  241. },
  242. isFixed() {
  243. return JSON.parse(localStorage.getItem("isFixed"));
  244. },
  245. },
  246. watch: {
  247. isFixed: {
  248. handler(val) {
  249. if (!val) {
  250. this.$store.commit("changeIsFixed", true);
  251. } else {
  252. this.fixed = val;
  253. }
  254. },
  255. immediate: true,
  256. },
  257. // 监听路由
  258. $route: {
  259. handler: function (val, oldVal) {
  260. this.menuData.some((element, index) => {
  261. if (val.path.includes(element.id)) {
  262. this.$nextTick(() => {
  263. this.currRoot = element.id;
  264. this.$nextTick(() => {
  265. this.currentMenu.some((element, index) => {
  266. if (val.path == element.path) {
  267. this.activeIndex = index;
  268. }
  269. });
  270. });
  271. });
  272. return true;
  273. } else {
  274. this.currRoot = "home";
  275. this.activeIndex = 0;
  276. }
  277. });
  278. },
  279. //深度观察监听
  280. deep: true,
  281. },
  282. },
  283. };
  284. </script>
  285. <style lang="less">
  286. .menu {
  287. padding-top: 20px;
  288. z-index: 3001;
  289. .menu-list {
  290. margin: 0;
  291. padding: 0;
  292. list-style: none;
  293. .menu-item {
  294. padding: 20px 0;
  295. text-align: center;
  296. .menu-icon {
  297. display: flex;
  298. justify-content: center;
  299. }
  300. &.active i {
  301. color: #05bb4c;
  302. transition: color 1s;
  303. }
  304. }
  305. }
  306. i {
  307. font-size: 16px;
  308. color: rgba(255, 255, 255, 50%);
  309. }
  310. }
  311. .sub-menu {
  312. position: absolute;
  313. top: 0;
  314. left: 50px;
  315. width: 184px;
  316. height: 100%;
  317. padding-top: 10px;
  318. background: fade(#192a26, 75);
  319. border-right: 1px solid fade(@green, 50);
  320. box-shadow: inset 11px 0px 20px 0px fade(#021412, 60);
  321. .menu-list {
  322. margin: 0;
  323. padding: 0;
  324. list-style: none;
  325. .menu-item {
  326. display: flex;
  327. text-align: center;
  328. line-height: 1.5;
  329. padding: 8px 0;
  330. background: #121d1c;
  331. a {
  332. display: flex;
  333. width: 100%;
  334. height: 100%;
  335. padding: 0 10px;
  336. font-size: 14px;
  337. text-decoration: unset;
  338. white-space: nowrap;
  339. .menu-icon {
  340. display: flex;
  341. align-items: center;
  342. svg {
  343. width: 14px;
  344. height: 14px;
  345. use {
  346. fill: fade(@green, 75);
  347. }
  348. }
  349. }
  350. }
  351. &.active {
  352. background: #323e70;
  353. .menu-icon {
  354. display: flex;
  355. svg use {
  356. fill: fade(@white, 75);
  357. }
  358. }
  359. }
  360. .sub-menu-text {
  361. margin-left: 10px;
  362. color: @gray-l;
  363. }
  364. & + .menu-item {
  365. border-top: 1px solid fade(@darkgray, 40);
  366. }
  367. }
  368. }
  369. i {
  370. font-size: 2.222vh;
  371. color: rgba(255, 255, 255, 50%);
  372. }
  373. }
  374. .icon-fixed {
  375. padding-bottom: 20px;
  376. }
  377. </style>