冷调 2024-09-10 15:25:51 +08:00
commit 27e4f6590a
3 changed files with 36 additions and 6 deletions

View File

@ -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'}
}
]
}
]

View File

@ -253,6 +253,7 @@ export default {
this.loading = false;
});
},
//
cancel() {
this.open = false;

View File

@ -26,6 +26,7 @@ import ExporFind from "./type/exporFind.vue";
import UniteFind from "./type/uniteFind.vue";
export default {
// import使"
name: 'type-table',