LeftWrap.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <script setup>
  2. import { useRouter, useRoute } from 'vue-router'
  3. import { useLayoutState } from '../hooks/index'
  4. import {apiSystemCommon} from '@/api/system'
  5. import { color } from 'highcharts';
  6. const router = useRouter()
  7. const route = useRoute()
  8. const { menuClose } = useLayoutState()
  9. const navList = ref([
  10. // {
  11. // name: '客户管理',
  12. // path: '/customer',
  13. // IsLevel: 2,
  14. // Children: [
  15. // {
  16. // name: '商家管理',
  17. // path: '/'
  18. // },
  19. // {
  20. // name: '用户管理',
  21. // path: '/customer/userList'
  22. // }
  23. // ]
  24. // },
  25. // {
  26. // name: 'ETA客户行为统计',
  27. // path: '/customer',
  28. // IsLevel: 1,
  29. // Children: [
  30. // {
  31. // name: 'ETA客户行为统计',
  32. // path: '/customer/userActionStatistic',
  33. // }
  34. // ]
  35. // },
  36. ])
  37. function getNavList() {
  38. apiSystemCommon.menuList().then(res=>{
  39. if(res.Ret===200){
  40. navList.value=res.Data.List||[]
  41. }
  42. })
  43. }
  44. getNavList()
  45. function handleClickMenu(path){
  46. router.push(path)
  47. }
  48. function getMenuIcon(item) {
  49. const iconMap = {
  50. '客户管理': 'menu/customer',
  51. 'ETA客户行为统计':'menu/menu02',
  52. 'ETA试用管理':'menu/menu03',
  53. 'ETA社区管理':'menu/menu04',
  54. 'ETA菜单配置':'menu/menu05',
  55. '培训管理':'menu/menu06',
  56. '个性化设置':'menu/menu07',
  57. '系统设置':'menu/menu08',
  58. '权限配置':'menu/menu09'
  59. }
  60. return iconMap[item] || 'menu/setting'
  61. }
  62. </script>
  63. <template>
  64. <div :class="['left-wrap', menuClose ? 'left-wrap__close' : '']">
  65. <t-menu
  66. class="menu-wrap"
  67. :value="$route.path"
  68. :collapsed="menuClose"
  69. :width="['200px', '80px']"
  70. >
  71. <template v-for="level1 in navList" :key="level1.MenuId">
  72. <t-menu-item :value="level1.children[0].path" v-if="level1.IsLevel === 1" @click="handleClickMenu(level1.children[0].path)">
  73. <template #icon>
  74. <svg-icon
  75. :name="getMenuIcon(level1.children[0].name)"
  76. :color="$route.path === level1.children[0].path ? '#086CE0' : '#333'"
  77. style="font-size: 20px;"
  78. ></svg-icon>
  79. </template>
  80. <span :style="`margin-left: 5px; color: ${route.meta.pathName === level1.children[0].name ? '#0052d9' : ''}`" >{{ level1.children[0].name }}</span>
  81. </t-menu-item>
  82. <t-submenu :value="level1.MenuId" v-if="level1.IsLevel === 2">
  83. <template #icon>
  84. <svg-icon
  85. :name="getMenuIcon(level1.name)"
  86. :color="$route.path === level1.path ? '#086CE0' : '#333'"
  87. style="font-size: 20px;"
  88. ></svg-icon>
  89. </template>
  90. <template #title>
  91. <span style="margin-left: 5px">{{ level1.name }}</span>
  92. </template>
  93. <t-menu-item
  94. v-for="child in level1.children"
  95. :value="child.path"
  96. :key="child.path"
  97. @click="handleClickMenu(child.path)"
  98. >
  99. <span :style="`margin-left: 5px; color: ${route.meta.pathName === child.name ? '#0052d9' : ''}`">{{ child.name }}</span>
  100. </t-menu-item>
  101. </t-submenu>
  102. </template>
  103. </t-menu>
  104. </div>
  105. </template>
  106. <style lang="scss" scoped>
  107. .left-wrap {
  108. width: 200px;
  109. z-index: 50;
  110. position: fixed;
  111. top: 67px;
  112. left: 0;
  113. bottom: 0;
  114. padding: 8px 0;
  115. background-color: #fff;
  116. display: flex;
  117. flex-direction: column;
  118. padding-bottom: 111px;
  119. transition: all 0.5s;
  120. .menu-wrap {
  121. flex: 1;
  122. height: 100%;
  123. border: none;
  124. .t-submenu {
  125. :deep(.t-menu-item) {
  126. padding-left: var(--t-menu-base-level-padding);
  127. }
  128. :deep(.t-submenu__icon-arrow) {
  129. transform: rotateZ(-90deg) !important;
  130. }
  131. &.is-opened {
  132. :deep(.t-submenu__icon-arrow) {
  133. transform: rotateZ(0deg) !important;
  134. border-radius: 4px;
  135. }
  136. }
  137. }
  138. :deep(.t-menu-item.is-active) {
  139. background-color: #f3f9ff;
  140. }
  141. }
  142. .user-box {
  143. background-color: var(--t-menu-hover-bg-color);
  144. color: #333;
  145. text-align: center;
  146. padding: 20px;
  147. .name-box {
  148. display: flex;
  149. justify-content: center;
  150. align-items: center;
  151. gap: 0 5px;
  152. }
  153. .opt {
  154. margin: 10px 0;
  155. cursor: pointer;
  156. }
  157. }
  158. }
  159. .left-wrap__close {
  160. width: 80px;
  161. }
  162. </style>