| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 |
- <script setup>
- import { computed } from 'vue'
- import { useRouter, useRoute } from 'vue-router'
- import {
- Picture,
- List,
- User,
- Operation,
- Fold,
- Expand,
- Aim,
- Coin,
- DataAnalysis,
- Cpu,
- Download,
- SetUp,
- Bell,
- Files,
- Notebook,
- FolderOpened,
- MagicStick,
- } from '@element-plus/icons-vue'
- import { isCollapsed, toggleCollapse } from '../stores/sidebarStore'
- const router = useRouter()
- const route = useRoute()
- // 使用全局状态管理的折叠状态
- const isCollapse = isCollapsed
- // 从 localStorage 获取用户信息
- const userInfo = computed(() => {
- const storedUser = localStorage.getItem('login_user')
- return storedUser ? JSON.parse(storedUser) : {}
- })
- // 判断用户角色
- const isAdmin = computed(() => userInfo.value?.role === 'ADMIN')
- const isDeveloper = computed(() => userInfo.value?.role === 'DEVELOPER')
- const isAdminOrDeveloper = computed(() => isAdmin.value || isDeveloper.value)
- // 导航菜单项
- const menuItems = computed(() => [
- {
- name: '数据看板',
- path: '/home',
- icon: DataAnalysis,
- visible: true
- },
- {
- name: '模型训练',
- path: '/model-training',
- icon: MagicStick,
- visible: isAdminOrDeveloper.value
- },
- {
- name: '桥梁安全隐患检测',
- path: '/disease-detection',
- icon: Aim,
- visible: true
- },
- {
- name: '安全隐患检测记录',
- path: '/detection-records',
- icon: List,
- visible: true
- },
- {
- name: '批量安全隐患检测',
- path: '/batch-detection',
- icon: Files,
- visible: true
- },
- {
- name: '安全隐患台账',
- path: '/defect-ledger',
- icon: Notebook,
- visible: true
- },
- {
- name: '报告中心',
- path: '/report-center',
- icon: FolderOpened,
- visible: true
- },
- {
- name: '媒体库',
- path: '/media-library',
- icon: Picture,
- visible: true
- },
- {
- name: '传感器管理',
- path: '/sensor-management',
- icon: Cpu,
- visible: true
- },
- {
- name: '数据采集',
- path: '/data-collection',
- icon: Download,
- visible: true
- },
- {
- name: '数据处理',
- path: '/data-processing',
- icon: SetUp,
- visible: true
- },
- {
- name: '预警管理',
- path: '/alert-management',
- icon: Bell,
- visible: true
- },
- {
- name: '模型库',
- path: '/model-library',
- icon: Coin,
- visible: isDeveloper.value
- },
- {
- name: '用户管理',
- path: '/user-management',
- icon: User,
- visible: isAdminOrDeveloper.value
- },
- {
- name: '系统操作日志',
- path: '/operation-logs',
- icon: Operation,
- visible: isAdminOrDeveloper.value
- }
- ])
- // 当前活动菜单项
- const activeMenu = computed(() => route.path)
- // 导航到指定路径
- const navigateTo = (path) => {
- router.push(path)
- }
- </script>
- <template>
- <div class="sidebar-menu" :class="{ 'collapsed': isCollapse }">
- <div class="collapse-btn" @click="toggleCollapse">
- <el-icon class="collapse-icon">
- <component :is="isCollapse ? Expand : Fold" />
- </el-icon>
- <span class="collapse-text" :class="{ 'hidden': isCollapse }">收起菜单</span>
- </div>
- <el-menu :default-active="activeMenu" class="el-menu-vertical" :collapse="isCollapse" :collapse-transition="true">
- <el-menu-item v-for="(item, index) in menuItems.filter(item => item.visible)" :key="index" :index="item.path"
- @click="navigateTo(item.path)">
- <el-icon>
- <component :is="item.icon" />
- </el-icon>
- <template #title>
- <span class="menu-text">{{ item.name }}</span>
- </template>
- </el-menu-item>
- </el-menu>
- </div>
- </template>
- <style scoped>
- .sidebar-menu {
- height: 100%;
- width: 200px;
- flex-shrink: 0;
- background: linear-gradient(
- 185deg,
- var(--sidebar) 0%,
- color-mix(in srgb, var(--sidebar) 55%, var(--primary) 45%) 52%,
- var(--sidebar) 100%
- );
- transition: width 0.42s cubic-bezier(0.32, 1.38, 0.55, 1);
- position: relative;
- display: flex;
- flex-direction: column;
- box-shadow: 4px 0 32px rgba(15, 23, 42, 0.35);
- overflow: hidden;
- border-radius: 0 16px 16px 0;
- }
- .sidebar-menu.collapsed {
- width: 64px;
- }
- .el-menu-vertical {
- border-right: none;
- width: 100%;
- flex: 1;
- background-color: transparent !important;
- }
- .el-menu-vertical :deep(.el-menu-item) {
- height: 50px;
- line-height: 50px;
- color: rgba(248, 250, 252, 0.82);
- margin: 4px 0;
- border-radius: 10px;
- padding: 0 20px !important;
- transition: all 0.3s ease;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- }
- .el-menu-vertical :deep(.el-menu-item.is-active) {
- background: linear-gradient(90deg, rgba(79, 70, 229, 0.38), rgba(99, 102, 241, 0.12));
- color: #f8fafc;
- font-weight: 600;
- box-shadow:
- inset 3px 0 0 0 rgba(129, 140, 248, 0.95),
- 0 0 28px rgba(79, 70, 229, 0.28),
- 0 6px 18px rgba(0, 0, 0, 0.22);
- transform: translateX(2px);
- }
- .el-menu-vertical :deep(.el-menu-item:hover:not(.is-active)) {
- background: rgba(248, 250, 252, 0.08);
- color: #ffffff;
- box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
- }
- .collapse-btn {
- height: 40px;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- padding: 0 20px;
- cursor: pointer;
- color: rgba(226, 232, 240, 0.75);
- transition: color 0.3s ease, background-color 0.3s ease;
- margin: 8px 0;
- }
- .collapse-icon {
- width: 24px;
- text-align: center;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-shrink: 0;
- }
- .collapse-text {
- margin-left: 8px;
- font-size: 14px;
- transition: opacity 0.25s ease 0.05s, transform 0.3s ease;
- white-space: nowrap;
- opacity: 1;
- transform: translateX(0);
- }
- .collapse-text.hidden {
- opacity: 0;
- transform: translateX(-10px);
- }
- .menu-text {
- transition: opacity 0.25s ease 0.05s, transform 0.3s ease;
- opacity: 1;
- transform: translateX(0);
- display: inline-block;
- }
- .el-menu--collapse :deep(.el-menu-item) .menu-text {
- opacity: 0;
- transform: translateX(-10px);
- }
- .el-menu-vertical :deep(.el-icon) {
- width: 24px;
- text-align: center;
- transition: all 0.3s ease;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-right: 8px;
- flex-shrink: 0;
- }
- .el-menu--collapse :deep(.el-menu-item) .el-icon {
- margin: 0 auto;
- justify-content: center;
- transform: translateX(0);
- left: 0;
- width: 24px;
- text-align: center;
- display: flex;
- align-items: center;
- }
- .collapse-btn:hover {
- color: #ffffff;
- background-color: rgba(255, 255, 255, 0.15);
- border-left: 3px solid rgba(201, 224, 255, 0.7);
- }
- /* 添加图标样式 */
- .el-menu-vertical :deep(.el-menu-item) .el-icon {
- color: rgba(226, 232, 240, 0.75);
- margin-right: 10px;
- transition: all 0.3s ease;
- }
- .el-menu-vertical :deep(.el-menu-item.is-active) .el-icon {
- color: #ffffff;
- transform: scale(1.05);
- }
- .el-menu-vertical :deep(.el-menu-item:hover) .el-icon {
- color: #ffffff;
- transform: scale(1.1);
- }
- .collapse-btn:hover {
- color: #ffffff;
- background-color: rgba(255, 255, 255, 0.15);
- border-left: 3px solid rgba(201, 224, 255, 0.7);
- }
- </style>
|