TheMenu.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <script setup lang="jsx">
  2. import { h, watch, ref } from 'vue'
  3. import { useRoute, useRouter } from 'vue-router';
  4. import { NMenu, NScrollbar } from 'naive-ui'
  5. import SvgIcon from '@/components/SvgIcon/index.vue'
  6. const route = useRoute();
  7. const router = useRouter();
  8. const activeMenuKey = ref(route.path);
  9. watch(() => route.path, currentPath => {
  10. activeMenuKey.value = currentPath;
  11. })
  12. function renderIcon (props) {
  13. return () => h(SvgIcon, { ...props })
  14. }
  15. function renderChildrenIcon ({ name, size = '20' }) {
  16. return () => (
  17. <div class="flex items-center justify-center">
  18. {renderIcon({ name, size, class: ['icon-default'] })()}
  19. {renderIcon({ name: name + '-active', size, class: ['icon-active', 'hidden'] })()}
  20. </div>
  21. )
  22. }
  23. function renderLabel (val, url) {
  24. return url ? (<a href={ url } target="_blank" class="pl-1">{ val }</a>) : (<span class="">{ val }</span>) ;
  25. }
  26. const menuOptions = [
  27. {
  28. label: () => renderLabel('数据报表分析'),
  29. icon: renderIcon({ name: 'menu-xiht-analyse' }),
  30. key: '/'
  31. },
  32. {
  33. label: () => renderLabel('智适应碳源投加'),
  34. icon: renderIcon({ name: 'menu-xiht-control' }),
  35. key: '/medicinal',
  36. },
  37. {
  38. label: () => renderLabel('用户中心'),
  39. icon: renderIcon({ name: 'menu-user' }),
  40. key: '/user',
  41. },
  42. ]
  43. const handleUpdateValue = (key, { url }) => {
  44. if (url) return window.open(url);
  45. if (key.includes('normal')) return;
  46. router.push(key);
  47. }
  48. </script>
  49. <template>
  50. <n-scrollbar style="height: 100%">
  51. <n-menu :options="menuOptions" :icon-size="30" v-model:value="activeMenuKey" @update:value="handleUpdateValue">
  52. </n-menu>
  53. </n-scrollbar>
  54. </template>
  55. <style scoped lang="scss"></style>
  56. <style lang="scss">
  57. @mixin sub-menu-active {
  58. .n-menu-item-content__icon {
  59. .icon-default {
  60. display: none;
  61. }
  62. .icon-active {
  63. display: block;
  64. }
  65. }
  66. .n-menu-item-content-header {
  67. font-weight: bold;
  68. }
  69. }
  70. .n-menu .n-menu-item-content:not(.n-menu-item-content--disabled):hover::before {
  71. border: 1px solid #fff;
  72. background: #FCFDFE;
  73. }
  74. // 子菜单hover
  75. .n-submenu-children {
  76. .n-menu-item-content:hover {
  77. @include sub-menu-active();
  78. }
  79. }
  80. // reset - 选中状态
  81. .n-menu-item-content--selected {
  82. @include sub-menu-active();
  83. &:not(.n-menu-item-content--disabled)::before {
  84. border: 1px solid #fff;
  85. background: #FCFDFE;
  86. }
  87. }
  88. // reset - 选中状态
  89. // .n-menu-item-content--selected {
  90. // font-weight: bold;
  91. // }
  92. // .n-base-icon {
  93. // background: url('@/assets/svgs/menu/arrow.svg') center center no-repeat;
  94. // svg {
  95. // display: none;
  96. // }
  97. // }
  98. </style>