表单设计页面,模型基础信息增删

This commit is contained in:
2024-04-29 09:02:06 +08:00
parent 8117b8673b
commit 0c7b5ff4d6
17 changed files with 2732 additions and 792 deletions

View File

@@ -83,10 +83,50 @@ export const adminBaseRoute = {
component: () => import('@/views/pqs/voltageSags/sagGovern/scheme/history/index.vue'),
name: '治理方案结果详情',
meta: {
title: pageTitle('router.schemeCalc')
title: pageTitle('router.schemeHistory')
}
},
]
},
{
path: 'form',
name: '表单',
meta: {
title: pageTitle('form'),
icon: 'ep:management',
alwaysShow: true
},
children: [
{
path: 'formDesigner',
component: () => import('@/views/system/workflow/form/formDesigner.vue'),
name: '表单设计器页面',
meta: {
title: pageTitle('router.formDesigner')
}
}
]
},
{
path: 'model',
name: '模型',
meta: {
title: pageTitle('model'),
icon: 'ep:management',
alwaysShow: true
},
children: [
{
path: 'processDesigner',
component: () => import('@/views/system/workflow/model/processDesigner.vue'),
name: '模型设计器页面',
meta: {
title: pageTitle('router.formDesigner')
}
}
]
}
]
}