import { RouteRecordRaw } from 'vue-router'; /** * * 建议:路由 path 路径与文件夹名称相同,找文件可浏览器地址找,方便定位文件位置 * * 路由meta对象参数说明 * meta: { * title: 菜单栏及 tagsView 栏、菜单搜索名称(国际化) * isLink: 是否超链接菜单,开启外链条件,`1、isLink: 链接地址不为空` * isHide: 是否隐藏此路由 * isKeepAlive: 是否缓存组件状态 * isAffix: 是否固定在 tagsView 栏上 * isIframe: 是否内嵌窗口,开启条件,`1、isIframe:true 2、isLink:链接地址不为空` * roles: 当前路由权限标识,取角色管理。控制路由显示、隐藏。超级管理员:admin 普通角色:common * icon: 菜单、tagsView 图标,阿里:加 `iconfont xxx`,fontawesome:加 `fa xxx` * } */ // 扩展 RouteMeta 接口 declare module 'vue-router' { interface RouteMeta { title?: string; isLink?: string; isHide?: boolean; isKeepAlive?: boolean; isAffix?: boolean; isIframe?: boolean; roles?: string[]; icon?: string; } } /** * 定义动态路由 * 前端添加路由,请在顶级节点的 `children 数组` 里添加 * @description 未开启 isRequestRoutes 为 true 时使用(前端控制路由),开启时第一个顶级 children 的路由将被替换成接口请求回来的路由数据 * @description 各字段请查看 `@/views/system/menu/component/Menu-add.vue 下的 ruleForm` * @returns 返回路由菜单数据 */ export const dynamicRoutes: Array = [ { path: '/', name: '/', component: () => import('@/layout/index.vue'), redirect: '/home', meta: { isKeepAlive: true, }, children: [ { path: '/home', name: 'home', component: () => import('@/views/home/index.vue'), meta: { title: '首页', isLink: '', isHide: false, isKeepAlive: true, isAffix: true, isIframe: false, icon: 'iconfont icon-shouye', }, }, ], }, { path: '/todo/seats/accept/:tagsViewName/:callId?/:id?', name: 'orderAccept', component: () => import('@/views/todo/seats/accept/index.vue'), meta: { title: '工单受理', isKeepAlive: true, isDynamic:true }, }, { path: '/knowledge/index/edit/:id?/:tagsViewName/:isDraft?', name: 'knowledgeEdit', component: () => import('@/views/knowledge/index/edit.vue'), meta: { title: '知识库新增/编辑', isKeepAlive: true, isDynamic:true }, }, { path: '/knowledge/index/preview/:tagsViewName/:id?/:isAddPv?', name: 'knowledgePreview', component: () => import('@/views/knowledge/index/preview.vue'), meta: { title: '知识查看', isKeepAlive: true, isDynamic:true }, }, { path: '/system/roles/dataAuth/:id/:tagsViewName?', name: 'systemDataAuth', component: () => import('@/views/system/dataAuth/index.vue'), meta: { title: '数据权限', isKeepAlive: true, isDynamic:true }, }, { path: '/system/config/workflow/edit/:id?/:tagsViewName', name: 'workflowAddEdit', component: () => import('@/views/system/config/workflow/component/workflowEdit.vue'), meta: { title: '流程编辑', isKeepAlive: true, isDynamic:true }, }, { path: '/public/notice/:tagsViewName/:id/:isRead', name: 'auxiliaryNoticeRead', component: () => import('@/views/public/notice/index.vue'), meta: { title: '通知阅读', isKeepAlive: true, isDynamic:true }, }, { path: '/statistics/order/visitTable/:id/:tagsViewName?', name: 'statisticsOrderVisitTable', component: () => import('@/views/statistics/order/visitTable.vue'), meta: { title: '回访不满意原因统计明细', isKeepAlive: true, isDynamic:true }, }, { path: '/statistics/order/specialTable/:cause/:tagsViewName?', name: 'statisticsOrderSpecialTable', component: () => import('@/views/statistics/order/specialTable.vue'), meta: { title: '特提统计明细', isKeepAlive: true, isDynamic:true }, }, { path: '/statistics/department/Detail/:key/:tagsViewName?', name: 'statisticsDepartmentSatisfiedDetail', component: () => import('@/views/statistics/department/detailSatisfied.vue'), meta: { title: '部门满意度统计明细', isKeepAlive: true, isDynamic:true }, }, { path: '/statistics/detailSatisfiedOrg/org/:key/:tagsViewName?', name: 'statisticsDepartmentSatisfiedOrg', component: () => import('@/views/statistics/department/detailSatisfiedOrg.vue'), meta: { title: '部门满意度统计明细部门', isKeepAlive: true, isDynamic:true }, }, { path: '/statistics/center/detailTelFrequently/:FromPhone/:tagsViewName?', name: 'telFrequentlyDetail', component: () => import('@/views/statistics/center/detailTelFrequently.vue'), meta: { title: '高频来电统计明细', isKeepAlive: true, isDynamic:true }, }, { path: '/statistics/center/detailEventFrequently/:id/:tagsViewName?', name: 'eventFrequentlyDetail', component: () => import('@/views/statistics/center/detailEventFrequently.vue'), meta: { title: '高频事项预警统计明细', isKeepAlive: true, isDynamic:true }, }, { path: '/statistics/department/detailOverdue/:id/:tagsViewName?', name: 'statisticsDepartmentOverdueDetail', component: () => import('@/views/statistics/department/detailOverdue.vue'), meta: { title: '部门超期统计明细', isKeepAlive: true, isDynamic:true }, }, { path: '/judicial/statistics/detailEventClass/:id/:tagsViewName?', name: 'judicialDetailEventClass', component: () => import('@/views/judicial/statistics/detailEventClass.vue'), meta: { title: '事项分类统计明细', isKeepAlive: true, isDynamic:true }, }, { path: '/judicial/statistics/detailDepartmentSub/:id/:tagsViewName?', // 部门 name: 'judicialStatisticsDepartmentSub', component: () => import('@/views/judicial/statistics/detailDepartmentSub.vue'), meta: { title: '执法部门办件统计明细', isKeepAlive: true, isDynamic:true }, }, { path: '/judicial/statistics/detailDepartment/:id/:tagsViewName?', //工单 name: 'judicialDetailDepartment', component: () => import('@/views/judicial/statistics/detailDepartment.vue'), meta: { title: '执法部门办件统计明细', isKeepAlive: true, isDynamic:true }, }, { path: '/judicial/statistics/detailArea/:id/:tagsViewName?', name: 'judicialDetailArea', component: () => import('@/views/judicial/statistics/detailArea.vue'), meta: { title: '区域分类统计明细', isKeepAlive: true, isDynamic:true }, }, { path: '/judicial/statistics/detailSatisfied/:id/:tagsViewName?', name: 'judicialStatisticsDetailSatisfied', component: () => import('@/views/judicial/statistics/detailSatisfied.vue'), meta: { title: '部门满意度统计明细', isKeepAlive: true, isDynamic:true }, }, { path: '/judicial/statistics/detailSatisfiedOrg/:id/:tagsViewName?', name: 'judicialStatisticsDetailSatisfiedOrg', component: () => import('@/views/judicial/statistics/detailSatisfiedOrg.vue'), meta: { title: '部门满意度统计明细部门', isKeepAlive: true, isDynamic:true }, }, { path: '/statistics/center/detailWrongItem', name: 'statisticsCenterDetailWrongItem', component: () => import('@/views/statistics/center/detailWrongItem.vue'), meta: { title: '回退错件统计明细', isKeepAlive: true, }, }, { path: '/statistics/order/detailAcceptType/:id/:tagsViewName?', name: 'statisticsDetailAcceptType', component: () => import('@/views/statistics/order/detailAcceptType.vue'), meta: { title: '部门受理类型统计周期明细', isKeepAlive: true, isDynamic:true }, },{ path: '/statistics/order/detailDispatch/:id/:tagsViewName?', name: 'statisticsOrderDetailDispatch', component: () => import('@/views/statistics/order/detailDispatch.vue'), meta: { title: '派单量统计明细', isKeepAlive: true, isDynamic:true }, }, { path: '/statistics/department/detailHandleOrg/:id/:tagsViewName?', name: 'statisticsDepartmentDetailHandleOrg', component: () => import('@/views/statistics/department/detailHandleOrg.vue'), meta: { title: '部门办件统计表明细', isKeepAlive: true, isDynamic:true }, }, { path: '/statistics/department/detailHandle/:id/:tagsViewName?', name: 'statisticsDepartmentDetailHandle', component: () => import('@/views/statistics/department/detailHandle.vue'), meta: { title: '部门办件统计表明细', isKeepAlive: true, isDynamic:true }, }, { path: '/statistics/call/detailTalkTime/:id/:tagsViewName?', name: 'statisticsCallDetailTalkTime', component: () => import('@/views/statistics/call/detailTalkTime.vue'), meta: { title: '通话时段分析', isKeepAlive: true, isDynamic:true }, }, ]; /** * 定义404、401界面 * @link 参考:https://next.router.vuejs.org/zh/guide/essentials/history-mode.html#netlify */ export const notFoundAndNoPower = [ { path: '/401', name: 'noPower', component: () => import('@/views/error/401.vue'), meta: { title: '无权限', isHide: true, }, }, { path: '/:pathMatch(.*)', name: 'notFound', component: () => import('@/views/error/404.vue'), meta: { title: '404', isHide: true, }, }, ]; /** * 定义静态路由(默认路由) * 此路由不要动,前端添加路由的话,请在 `dynamicRoutes 数组` 中添加 * @description 前端控制直接改 dynamicRoutes 中的路由,后端控制不需要修改,请求接口路由数据时,会覆盖 dynamicRoutes 第一个顶级 children 的内容(全屏,不包含 layout 中的路由出口) * @returns 返回路由菜单数据 */ export const staticRoutes: Array = [ { path: '/login', name: 'login', component: () => import('@/views/login/index.vue'), meta: { title: '登录', }, }, { path: '/forgetPwd', name: 'forgetPwd', component: () => import('@/views/forgetPwd/index.vue'), meta: { title: '修改密码', }, }, { path: '/resetPwd', name: 'resetPwd', component: () => import('@/views/resetPwd/index.vue'), meta: { title: '重置密码', }, }, ];