From ddd578d773ab7fd653581fa1b30b6bf36b2be195 Mon Sep 17 00:00:00 2001 From: wanglin2 <1013335014@qq.com> Date: Tue, 21 Nov 2023 17:54:12 +0800 Subject: [PATCH] Doc: update --- web/src/pages/Doc/catalogList.js | 2 +- web/src/pages/Doc/routerList.js | 1 + web/src/pages/Doc/zh/course25/index.md | 17 +++++++++++++++++ web/src/pages/Doc/zh/course25/index.vue | 24 ++++++++++++++++++++++++ 4 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 web/src/pages/Doc/zh/course25/index.md create mode 100644 web/src/pages/Doc/zh/course25/index.vue diff --git a/web/src/pages/Doc/catalogList.js b/web/src/pages/Doc/catalogList.js index 89167f03..3be383c5 100644 --- a/web/src/pages/Doc/catalogList.js +++ b/web/src/pages/Doc/catalogList.js @@ -11,7 +11,7 @@ let langList = [ } ] let StartList = ['introduction', 'start', 'deploy', 'client', 'translate', 'changelog'] -let CourseList = new Array(24).fill(0).map((_, index) => { +let CourseList = new Array(25).fill(0).map((_, index) => { return 'course' + (index + 1) }) let APIList = [ diff --git a/web/src/pages/Doc/routerList.js b/web/src/pages/Doc/routerList.js index 706eb1d5..4d79cbe0 100644 --- a/web/src/pages/Doc/routerList.js +++ b/web/src/pages/Doc/routerList.js @@ -31,6 +31,7 @@ export default [ { path: 'course22', title: '如何实现搜索、替换' }, { path: 'course23', title: '如何渲染滚动条' }, { path: 'course24', title: '如何开发一个插件' }, + { path: 'course25', title: '关于概要' }, { path: 'doExport', title: 'Export 插件' }, { path: 'drag', title: 'Drag插件' }, { path: 'introduction', title: '简介' }, diff --git a/web/src/pages/Doc/zh/course25/index.md b/web/src/pages/Doc/zh/course25/index.md new file mode 100644 index 00000000..b1bf7123 --- /dev/null +++ b/web/src/pages/Doc/zh/course25/index.md @@ -0,0 +1,17 @@ +# 关于概要 + +概要的功能非常的不完善,具体如下: + +1.选中单个节点添加单个概要。 + +2.同时选中多个节点添加概要时,具有同一个父节点的子节点的概要会被合并成一个,称为区间概要,其他的仍旧作为单个概要。 + +3.给子节点添加了区间概要时自身无法再添加单个概要。 + +4.区间概要不会随着区间内的子节点变化而变化,只会在子节点数量无法满足区间时自动删除该区间概要。 + +5.概要节点后面无法再继续添加概要。 + +6.概要节点间、概要节点和普通节点可能会冲突重叠。 + +概要功能不会再完善,所以对概要功能要求高的项目请谨慎选择`simple-mind-map`。 \ No newline at end of file diff --git a/web/src/pages/Doc/zh/course25/index.vue b/web/src/pages/Doc/zh/course25/index.vue new file mode 100644 index 00000000..40208ebf --- /dev/null +++ b/web/src/pages/Doc/zh/course25/index.vue @@ -0,0 +1,24 @@ + + + + + \ No newline at end of file