feat: 普通表单的展示改到tab页里

This commit is contained in:
gaoyunqi
2024-03-11 14:19:36 +08:00
parent 417355defc
commit cf66f75050
3 changed files with 176 additions and 1 deletions

View File

@ -184,4 +184,37 @@ export const FLOW_ROUTE: AppRouteRecordRaw[] = [{
}
}
]
}, {
path: '/form/:module/:id',
name: 'SimpleForm',
meta: {
title: '表单'
},
component: LAYOUT,
children: [
{
path: 'createForm',
name: 'createForm',
component: () => import('/@/views/secondDev/formCreatePage.vue'),
meta: {
title: '新建表单'
}
},
{
path: 'updateForm',
name: 'updateForm',
component: () => import('/@/views/secondDev/formCreatePage.vue'),
meta: {
title: '更新表单'
}
},
{
path: 'viewForm',
name: 'viewForm',
component: () => import('/@/views/secondDev/formCreatePage.vue'),
meta: {
title: '查看表单'
}
}
]
}];