feat: 普通表单的展示改到tab页里
This commit is contained in:
@ -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: '查看表单'
|
||||
}
|
||||
}
|
||||
]
|
||||
}];
|
||||
|
||||
Reference in New Issue
Block a user