2025-06-05 12:57:00 +00:00
|
|
|
const ParagraphRouter = {
|
|
|
|
|
path: '/paragraph/:id/:documentId',
|
|
|
|
|
name: 'Paragraph',
|
|
|
|
|
meta: { title: 'common.fileUpload.document', activeMenu: '/knowledge', breadcrumb: true },
|
|
|
|
|
component: () => import('@/layout/layout-template/SimpleLayout.vue'),
|
|
|
|
|
hidden: true,
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
path: '/paragraph/:id/:documentId',
|
2025-06-06 08:32:03 +00:00
|
|
|
name: 'ParagraphIndex',
|
2025-06-05 12:57:00 +00:00
|
|
|
meta: { activeMenu: '/knowledge' },
|
|
|
|
|
component: () => import('@/views/paragraph/index.vue'),
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default ParagraphRouter
|