Browse Source

修改引导配置

lijie 3 years ago
parent
commit
9530b952f7
1 changed files with 14 additions and 2 deletions
  1. 14 2
      docs/.vuepress/config.js

+ 14 - 2
docs/.vuepress/config.js

@@ -7,9 +7,9 @@ module.exports = {
             { text: '主页', link: '/' },
             { text: '通用说明文档', link: '/utils/common' },
             { text: '物理世界', link: '/rwd/' },
-            { text: '知识库', link: '/dic/' }
+            { text: '知识库', link: '/dic/' },
+            { text: '版本管理', link: '/version/' }
         ],
-
         sidebarDepth: 2,
         displayAllHeaders: true,
         sidebar: {
@@ -44,6 +44,18 @@ module.exports = {
                     children: [{ title: '数据结构说明', path: '/rwd/data_structure_description' }]
                 }
             ],
+            '/version': [
+                {
+                    title: '版本管理接口文档',
+                    collapsable: false,
+                    children: [{ title: '接口文档', path: '/version/version_api' }]
+                },
+                {
+                    title: '版本管理数据结构说明',
+                    collapsable: false,
+                    children: [{ title: '数据结构说明', path: '/version/data_structure_description' }]
+                }
+            ],
         }
     }
 }