v1.2.0需求开发中

This commit is contained in:
2025-07-18 16:22:28 +08:00
parent a0ebd8254a
commit 9fa026f267
75 changed files with 10703 additions and 1197 deletions

View File

@@ -90,6 +90,38 @@ const childrenRoutes = [
}
}
},
{//编辑器测试
path: 'editorDocument',
name: 'EditorDocument',
component: () => import('../views/editorDocument.vue'),
meta: {
title: '编辑器测试',
description: i18n.t(`seo.helpCenter`),
allAuthority: [`all`],
keywords: {
en: 'Help Center,Beginner Guide,Mining Data,Frequently Asked Questions,Announcement Center,Other',
zh: '帮助中心,新手入门,常见问题,公告中心'
}
}
},
{//编辑器测试markdown
path: 'markdown',
name: 'Markdown',
component: () => import('../views/markdown.vue'),
meta: {
title: 'markdown编辑器测试',
// description: i18n.t(`seo.helpCenter`),
allAuthority: [`all`],
// keywords: {
// en: 'Help Center,Beginner Guide,Mining Data,Frequently Asked Questions,Announcement Center,Other',
// zh: '帮助中心,新手入门,常见问题,公告中心'
// }
}
},
{//广播页面
@@ -135,7 +167,48 @@ const childrenRoutes = [
}
}
},
{//文档管理
path: 'documentManagement',
name: 'DocumentManagement',
component: () => import('../views/documentManagement/index.vue'),
meta: {
title: '文档管理',
description: i18n.t(`seo.documentManagement`),
allAuthority: [`back_admin`],
keywords: {
en: 'documentManagement',
zh: '文档管理'
}
}
},
{//新增文档 modifyDocument
path: 'addDocument',
name: 'AddDocument',
component: () => import('../views/documentManagement/addDocument/index.vue'),
meta: {
title: '新增文档',
description: i18n.t(`seo.documentManagement`),
allAuthority: [`back_admin`],
keywords: {
en: 'documentManagement',
zh: '文档管理'
}
}
},
{//修改文档
path: 'modifyDocument',
name: 'ModifyDocument',
component: () => import('../views/documentManagement/modifyDocument/index.vue'),
meta: {
title: '修改文档',
description: i18n.t(`seo.documentManagement`),
allAuthority: [`back_admin`],
keywords: {
en: 'documentManagement',
zh: '文档管理'
}
}
},
{//费率
@@ -659,6 +732,20 @@ const staticRoutes = [
}
}
},
{
path: '/:lang/splitEditorDemo',
name: 'splitEditorDemo',
component: () => import('../views/splitEditorDemo/index.vue'),
meta: {
title: '分屏编辑器演示',
description: "M2Pool 分屏编辑器演示页面,支持编辑、预览、分屏三种模式的富文本编辑器",
allAuthority: [`all`],
keywords: {
en: 'split screen editor,rich text editor,real-time preview,WYSIWYG editor',
zh: '分屏编辑器,富文本编辑器,实时预览,所见即所得编辑器'
}
}
},