config.js 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. module.exports = {
  2. title: '数据中台',
  3. description: 'Just playing around',
  4. plugins: ['@vuepress/back-to-top'],
  5. themeConfig: {
  6. nav: [{ text: '主页', link: '/' },
  7. { text: '通用查询接口', link: '/utils/query' },
  8. { text: '物理世界', link: '/rwd/' },
  9. { text: '人员组织权限', link: '/org/' },
  10. { text: '数据标准化', link: '/dic/'},
  11. { text: '任务调度', link: '/task/' },
  12. { text: '报警系统', link: '/alarm/'},
  13. { text: '报表统计系统', link: '/report/'}
  14. ],
  15. sidebarDepth: 2,
  16. displayAllHeaders: true,
  17. sidebar: {
  18. '/utils/query': [
  19. {
  20. title: '通用查询接口',
  21. collapsable: false,
  22. children: [
  23. {title: '通用查询', path: '/utils/query'}
  24. ]
  25. }
  26. ],
  27. '/report': [
  28. {
  29. title: '报表统计系统',
  30. collapsable: false,
  31. children: [
  32. {title: '接口文档', path: '/report/report_api'},
  33. {title: '数据结构设计', path: '/report/report_design'}
  34. ]
  35. }
  36. ],
  37. '/alarm': [
  38. {
  39. title: '报警系统',
  40. collapsable: false,
  41. children: [
  42. {title: '接口文档', path: '/alarm/alarm_api'},
  43. {title: '数据结构设计', path: '/alarm/alarm_design'}
  44. ]
  45. }
  46. ],
  47. '/org': [
  48. {
  49. title: '人员组织权限',
  50. collapsable: false,
  51. children: [
  52. {title: '接口文档', path: '/org/org_api'},
  53. {title: '数据结构设计', path: '/org/org_design'}
  54. ]
  55. }
  56. ],
  57. '/task': [
  58. {
  59. title: '数据标准化',
  60. collapsable: false,
  61. children: [
  62. {title: '接口文档', path: '/task/task_api'},
  63. {title: '数据结构设计', path: '/task/task_design'}
  64. ]
  65. }
  66. ],
  67. '/dic': [
  68. {
  69. title: '数据标准化',
  70. collapsable: false,
  71. children: [
  72. {title: '接口文档', path: '/dic/dic_api'},
  73. {title: '数据结构设计', path: '/dic/dic_design'}
  74. ]
  75. }
  76. ],
  77. '/rwd': [
  78. {
  79. title: '定义数据',
  80. collapsable: false,
  81. children: [{ title: '类型定义', path: '/rwd/def_class' }, { title: '信息点定义', path: '/rwd/def_funcid' }]
  82. },
  83. {
  84. title: '实例数据',
  85. collapsable: false,
  86. children: [{ title: '对象数据', path: '/rwd/instance_object' }, { title: '关系数据', path: '/rwd/instance_relation' }]
  87. },
  88. { title: 'IOT', path: '/rwd/iot' }
  89. ]
  90. }
  91. }
  92. }