Merge branch 'master' of https://gitea.qinmian.online/2112A-ONE/cloud-ui
commit
27e4f6590a
|
@ -19,12 +19,12 @@ Vue.use(Router)
|
|||
* roles: ['admin', 'common'] // 访问路由的角色权限
|
||||
* permissions: ['a:a:a', 'b:b:b'] // 访问路由的菜单权限
|
||||
* meta : {
|
||||
noCache: true // 如果设置为true,则不会被 <keep-alive> 缓存(默认 false)
|
||||
title: 'title' // 设置该路由在侧边栏和面包屑中展示的名字
|
||||
icon: 'svg-name' // 设置该路由的图标,对应路径src/assets/icons/svg
|
||||
breadcrumb: false // 如果设置为false,则不会在breadcrumb面包屑中显示
|
||||
activeMenu: '/system/user' // 当路由设置了该属性,则会高亮相对应的侧边栏。
|
||||
}
|
||||
noCache: true // 如果设置为true,则不会被 <keep-alive> 缓存(默认 false)
|
||||
title: 'title' // 设置该路由在侧边栏和面包屑中展示的名字
|
||||
icon: 'svg-name' // 设置该路由的图标,对应路径src/assets/icons/svg
|
||||
breadcrumb: false // 如果设置为false,则不会在breadcrumb面包屑中显示
|
||||
activeMenu: '/system/user' // 当路由设置了该属性,则会高亮相对应的侧边栏。
|
||||
}
|
||||
*/
|
||||
|
||||
// 公共路由
|
||||
|
@ -146,6 +146,34 @@ export const dynamicRoutes = [
|
|||
meta: {title: '修改生成配置', activeMenu: '/tool/gen'}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/engine/rule-version',
|
||||
component: Layout,
|
||||
hidden: true,
|
||||
permissions: ['engine:ruleInfo:query'],
|
||||
children: [
|
||||
{
|
||||
path: 'index/:ruleId',
|
||||
component: () => import('@/views/engine/ruleInfo/Version'),
|
||||
name: 'Version',
|
||||
meta: {title: `规则版本`, activeMenu: '/engine/ruleInfo'}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/engine/rule-test',
|
||||
component: Layout,
|
||||
hidden: true,
|
||||
permissions: ['engine:ruleInfo:query'],
|
||||
children: [
|
||||
{
|
||||
path: 'index',
|
||||
component: () => import('@/views/engine/ruleInfo/Test.vue'),
|
||||
name: 'Test',
|
||||
meta: {title: `测试拓扑图`, activeMenu: '/engine/ruleInfo'}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
|
|
|
@ -253,6 +253,7 @@ export default {
|
|||
this.loading = false;
|
||||
});
|
||||
},
|
||||
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
|
|
|
@ -26,6 +26,7 @@ import ExporFind from "./type/exporFind.vue";
|
|||
import UniteFind from "./type/uniteFind.vue";
|
||||
|
||||
|
||||
|
||||
export default {
|
||||
// import引入的组件需要注入到对象中才能使用"
|
||||
name: 'type-table',
|
||||
|
|
Loading…
Reference in New Issue