bonus-ui/src/router/index.js

391 lines
11 KiB
JavaScript
Raw Normal View History

2024-06-26 15:11:05 +08:00
import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
/* Layout */
import Layout from '@/layout'
/**
* Note: 路由配置项
*
* hidden: true // 当设置 true 的时候该路由不会再侧边栏出现 如401login等页面或者如一些编辑页面/edit/1
* alwaysShow: true // 当你一个路由下面的 children 声明的路由大于1个时自动会变成嵌套的模式--如组件页面
* // 只有一个时,会将那个子路由当做根路由显示在侧边栏--如引导页面
* // 若你想不管路由下面的 children 声明的个数都显示你的根路由
* // 你可以设置 alwaysShow: true这样它就会忽略之前定义的规则一直显示根路由
* redirect: noRedirect // 当设置 noRedirect 的时候该路由在面包屑导航中不可被点击
* name:'router-name' // 设定路由的名字,一定要填写不然使用<keep-alive>时会出现各种问题
* query: '{"id": 1, "name": "ry"}' // 访问路由的默认传递参数
* roles: ['admin', 'common'] // 访问路由的角色权限
* permissions: ['a:a:a', 'b:b:b'] // 访问路由的菜单权限
* meta : {
2024-12-08 17:35:17 +08:00
noCache: true // 如果设置为true则不会被 <keep-alive> 缓存(默认 false)
title: 'title' // 设置该路由在侧边栏和面包屑中展示的名字
icon: 'svg-name' // 设置该路由的图标对应路径src/assets/icons/svg
breadcrumb: false // 如果设置为false则不会在breadcrumb面包屑中显示
activeMenu: '/system/user' // 当路由设置了该属性,则会高亮相对应的侧边栏。
}
2024-06-26 15:11:05 +08:00
*/
// 公共路由
export const constantRoutes = [
2025-09-22 09:59:47 +08:00
{
path: '/redirect',
component: Layout,
hidden: true,
children: [
{
path: '/redirect/:path(.*)',
component: () => import('@/views/redirect')
}
]
},
{
path: '/login',
component: () => import('@/views/login1'),
hidden: true
},
{
path: '/register',
component: () => import('@/views/register1'),
hidden: true
},
{
path: '/404',
component: () => import('@/views/error/404'),
hidden: true
},
{
path: '/401',
component: () => import('@/views/error/401'),
hidden: true
},
2025-10-13 09:27:53 +08:00
{
path: '',
component: Layout,
redirect: 'index',
children: [
{
path: 'index',
2025-12-11 20:03:52 +08:00
component: () => import('@/views/home/index'),
2025-10-13 09:27:53 +08:00
name: 'Index',
2025-11-20 13:41:21 +08:00
meta: { title: '首页', icon: 'dashboard', affix: true }
},
]
},
{
path: '',
component: Layout,
redirect: 'index1',
children: [
{
path: 'index1',
component: () => import('@/views/index'),
name: 'Index1',
2025-10-13 09:27:53 +08:00
meta: { title: '快捷导航', icon: 'dashboard', affix: true }
},
]
},
2025-09-22 09:59:47 +08:00
{
path: '/qrCode/qrCodePage',
component: () => import('@/views/qrCode/qrCode'),
hidden: true
},
{
path: '/screen/cityScreen',
component: () => import('@/views/screen/cityScreen/index'),
2025-10-29 17:18:06 +08:00
meta: { title: '城市大屏', icon: 'dashboard', affix: true },
hidden: true
},
{
path: '/screen/cityWidescreen',
component: () => import('@/views/screen/cityScreen-old/index'),
meta: { title: '城市大屏', icon: 'dashboard', affix: true },
hidden: true
2025-09-22 09:59:47 +08:00
},
{
path: '/screen/wsScreen',
component: () => import('@/views/screen/wsScreen/index'),
2025-10-29 17:18:06 +08:00
meta: { title: '省级大屏', icon: 'dashboard', affix: true },
hidden: true
},
{
path: '/screen/wsScreenWidescreen',
component: () => import('@/views/screen/wsScreenWidescreen/index'),
meta: { title: '省级大屏-宽屏', icon: 'dashboard', affix: true },
hidden: true
2025-09-22 09:59:47 +08:00
},
2025-11-19 18:08:59 +08:00
{
path: '/screen/gwScreen',
component: () => import('@/views/screen/gwScreen/index'),
meta: { title: '国网装备一张图', icon: 'dashboard', affix: true },
hidden: true
},
2025-12-11 18:36:05 +08:00
{
path: '/screen/shareScreen',
component: () => import('@/views/screen/shareScreen/index'),
meta: { title: '装备共享一张图', icon: 'dashboard', affix: true },
hidden: true
},
2025-09-22 09:59:47 +08:00
{
path: '/user',
component: Layout,
hidden: true,
redirect: 'noredirect',
children: [
{
path: 'profile',
component: () => import('@/views/system/user/profile/index'),
name: 'Profile',
meta: { title: '个人中心', icon: 'user' }
}
]
}
2024-06-26 15:11:05 +08:00
]
// 动态路由,基于用户权限动态去加载
export const dynamicRoutes = [
2025-09-22 09:59:47 +08:00
{
path: '/system/user-auth',
component: Layout,
hidden: true,
permissions: ['system:user:edit'],
children: [
{
path: 'role/:userId(\\d+)',
component: () => import('@/views/system/user/authRole'),
name: 'AuthRole',
meta: { title: '分配角色', activeMenu: '/system/user' }
}
]
},
{
path: '/system/role-auth',
component: Layout,
hidden: true,
permissions: ['system:role:edit'],
children: [
{
path: 'user/:roleId(\\d+)',
component: () => import('@/views/system/role/authUser'),
name: 'AuthUser',
meta: { title: '分配用户', activeMenu: '/system/role' }
}
]
},
{
path: '/system/dict-data',
component: Layout,
hidden: true,
permissions: ['system:dict:list'],
children: [
{
path: 'index/:dictId(\\d+)',
component: () => import('@/views/system/dict/data'),
name: 'Data',
meta: { title: '字典数据', activeMenu: '/system/dict' }
}
]
},
2025-09-25 19:20:00 +08:00
{
path: '/equipment/equipment-input',
component: Layout,
hidden: true,
permissions: ['system:dict:list'],
children: [
{
path: 'index',
component: () => import('@/views/EquipmentEntryApply/equipmentInput/index'),
2025-10-13 09:27:53 +08:00
name: 'equipmentInput',
2025-09-25 19:20:00 +08:00
meta: { title: '装备录入', activeMenu: '/equipment/equipment-input' }
}
]
},
{
2025-10-13 09:27:53 +08:00
path: '/equipment/equipment-review',
2025-09-27 11:17:05 +08:00
component: Layout,
hidden: true,
permissions: ['system:dict:list'],
children: [
{
path: 'index',
2025-10-13 09:27:53 +08:00
component: () => import('@/views/EquipmentEntryApproval/equipmentInput/index'),
name: 'equipmentReview',
meta: { title: '装备审核', activeMenu: '/equipment/equipment-input' }
2025-09-27 11:17:05 +08:00
}
]
},
2025-10-13 09:27:53 +08:00
2025-09-27 11:17:05 +08:00
{
2025-10-13 09:27:53 +08:00
path: '/equipment/equipment-review-detail',
2025-09-27 11:17:05 +08:00
component: Layout,
hidden: true,
permissions: ['system:dict:list'],
children: [
{
path: 'index',
2025-10-13 09:27:53 +08:00
component: () => import('@/views/EquipmentEntryApproval/equipmentInput/devDetail'),
name: 'devDetail',
meta: { title: '装备审核-查看', activeMenu: '/equipment/equipment-devDetail' }
2025-09-27 11:17:05 +08:00
}
]
},
2025-10-13 09:27:53 +08:00
2025-09-27 11:17:05 +08:00
{
2025-10-13 09:27:53 +08:00
path: '/equipment/equipment-input',
2025-09-27 11:17:05 +08:00
component: Layout,
hidden: true,
permissions: ['system:dict:list'],
children: [
{
2025-10-13 09:27:53 +08:00
path: 'add',
component: () => import('@/views/EquipmentEntryApply/equipmentInput/add'),
name: 'equipmentInputAdd',
meta: { title: '新增装备', activeMenu: '/equipment/equipment-input' }
2025-09-27 11:17:05 +08:00
}
]
},
2025-09-22 09:59:47 +08:00
{
path: '/face/face-data',
component: Layout,
hidden: false, // 或者删除此属性以确保显示
permissions: ['face:data:list'],
children: [
{
// 只需要 ':groupCode' 来匹配字符串
path: 'index/:groupCode',
component: () => import('@/views/face/faceData/index'),
name: 'Data',
meta: { title: '人脸库', activeMenu: '/face/face-data' }
}
]
},
{
path: '/monitor/job-log',
component: Layout,
hidden: true,
permissions: ['monitor:job:list'],
children: [
{
path: 'index/:jobId(\\d+)',
component: () => import('@/views/monitor/job/log'),
name: 'JobLog',
meta: { title: '调度日志', activeMenu: '/monitor/job' }
}
]
},
{
path: '/tool/gen-edit',
component: Layout,
hidden: true,
permissions: ['tool:gen:edit'],
children: [
{
path: 'index/:tableId(\\d+)',
component: () => import('@/views/tool/gen/editTable'),
name: 'GenEdit',
meta: { title: '修改生成配置', activeMenu: '/tool/gen' }
}
]
2025-11-16 23:55:09 +08:00
},
2025-11-27 20:35:03 +08:00
{
path: '/equipment/repair',
component: Layout,
hidden: true,
permissions: ['system:dict:list'],
children: [
{
path: 'approval-detail',
component: () => import('@/views/equipmentRepair/repairAudit/repairApprovalDetail'),
name: 'RepairApprovalDetail',
meta: { title: '维修审批详情', activeMenu: '/equipment/repair' }
}
]
},
2025-11-16 23:55:09 +08:00
{
path: '/equipment/retire-apply',
component: Layout,
hidden: true,
permissions: ['system:dict:list'],
children: [
{
path: 'index',
component: () => import('@/views/EquipmentRetireApply/index'),
name: 'RetireApply',
meta: { title: '退役申请', activeMenu: '/equipment/retire-apply' }
},
{
path: 'detail/:id',
component: () => import('@/views/EquipmentRetireApply/detail'),
name: 'RetireApplyDetail',
meta: { title: '退役申请明细', activeMenu: '/equipment/retire-apply' }
},
{
path: 'audit',
component: () => import('@/views/EquipmentRetireApply/audit'),
name: 'RetireApplyAudit',
meta: { title: '退役申请审核', activeMenu: '/equipment/retire-apply' }
},
{
path: 'audit-detail/:id',
component: () => import('@/views/EquipmentRetireApply/audit-detail'),
name: 'RetireApplyAuditDetail',
meta: { title: '退役申请审核明细', activeMenu: '/equipment/retire-apply' }
2025-11-27 20:35:03 +08:00
},
{
path: 'todo',
component: () => import('@/views/EquipmentRetireApply/todo'),
name: 'RetireApplyTodo',
meta: { title: '我的待办', activeMenu: '/equipment/retire-apply' }
}
]
},
{
path: '/system/approval',
component: Layout,
hidden: true,
permissions: ['material:approval:process:list'],
children: [
{
path: 'index',
component: () => import('@/views/system/approval/index'),
name: 'ApprovalProcess',
meta: { title: '审批流程配置', activeMenu: '/system/approval' }
},
{
path: 'detail',
component: () => import('@/views/system/approval/detail'),
name: 'ApprovalProcessDetail',
meta: { title: '审批流程详情', activeMenu: '/system/approval' }
2025-11-16 23:55:09 +08:00
}
]
2025-09-22 09:59:47 +08:00
}
2024-06-26 15:11:05 +08:00
]
// 防止连续点击多次路由报错
2024-12-08 17:35:17 +08:00
let routerPush = Router.prototype.push
let routerReplace = Router.prototype.replace
2024-06-26 15:11:05 +08:00
// push
Router.prototype.push = function push(location) {
2025-09-22 09:59:47 +08:00
return routerPush.call(this, location).catch((err) => err)
2024-06-26 15:11:05 +08:00
}
// replace
Router.prototype.replace = function push(location) {
2025-09-22 09:59:47 +08:00
return routerReplace.call(this, location).catch((err) => err)
2024-06-26 15:11:05 +08:00
}
export default new Router({
2025-09-22 09:59:47 +08:00
mode: 'history', // 去掉url中的# / 宏源为history
scrollBehavior: () => ({ y: 0 }),
routes: constantRoutes,
2025-11-19 18:08:59 +08:00
base: process.env.NODE_ENV === 'production' ? '/' : '' // 宏源打包时隐藏
2024-06-26 15:11:05 +08:00
})