Aside.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <script setup>
  2. import { reactive, ref, watch } from "vue";
  3. import { useRoute } from "vue-router";
  4. const route = useRoute();
  5. let activePath = ref("/activity/list");
  6. watch(
  7. () => route.path,
  8. (to) => {
  9. activePath.value = to;
  10. },
  11. {
  12. immediate: true,
  13. }
  14. );
  15. const menuList = reactive([
  16. {
  17. MenuId: 1,
  18. name: "研报",
  19. path: "/report/list",
  20. icon_path: new URL('../../assets/leftNav/activity-s.png', import.meta.url).href,
  21. children: null,
  22. },
  23. {
  24. MenuId: 1,
  25. name: "ETA图库",
  26. path: "/chart/list",
  27. icon_path: new URL('../../assets/leftNav/activity-s.png', import.meta.url).href,
  28. children: null,
  29. },
  30. {
  31. MenuId: 1,
  32. name: "活动",
  33. path: "/activity/list",
  34. icon_path: new URL('../../assets/leftNav/activity-s.png', import.meta.url).href,
  35. children: null,
  36. }
  37. ]);
  38. </script>
  39. <template>
  40. <div class="aside-wrap">
  41. <el-menu router :default-active="activePath" unique-opened text-color="#333" active-text-color="#F3A52F" class="el-menu-wrap">
  42. <template v-for="menu in menuList">
  43. <el-menu-item :index="menu.path" :key="menu.id" v-if="!menu.children">
  44. <img class="menu-icon" :src="menu.icon_path" alt="" />
  45. <span class="menu-text">{{ menu.name }}</span>
  46. </el-menu-item>
  47. <el-sub-menu :index="menu.MenuId + ''" :key="menu.MenuId" v-else>
  48. <template #title>
  49. <img class="menu-icon" :src="menu.icon_path" alt="" />
  50. <span class="menu-text">{{ menu.name }}</span>
  51. </template>
  52. <el-menu-item v-for="child in menu.children" :key="child.MenuId" :index="child.path" style="text-align: center">
  53. {{ child.name }}
  54. </el-menu-item>
  55. </el-sub-menu>
  56. </template>
  57. </el-menu>
  58. </div>
  59. </template>
  60. <style lang="scss" scoped>
  61. .aside-wrap {
  62. padding-top: 20px;
  63. position: relative;
  64. border-right:1px solid #F2F2F2;
  65. height: 100%;
  66. &::-webkit-scrollbar {
  67. width: 0;
  68. }
  69. }
  70. .el-menu-wrap {
  71. width: 100%;
  72. border: none;
  73. }
  74. .el-menu-item:hover{
  75. background-color: #FFFBF5;
  76. }
  77. .el-menu-item.is-active {
  78. background-color: #FFFBF5 !important;
  79. }
  80. .menu-icon {
  81. width: 20px;
  82. height: 20px;
  83. margin-right: 20px;
  84. vertical-align: middle;
  85. }
  86. .menu-text {
  87. display: inline-block;
  88. vertical-align: middle;
  89. font-size: 16px;
  90. font-weight: bold;
  91. }
  92. ul,
  93. li {
  94. box-sizing: border-box;
  95. display: block;
  96. }
  97. </style>