config.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. { text: '数据仓库', link: '/dw/'}
  15. ],
  16. sidebarDepth: 2,
  17. displayAllHeaders: true,
  18. sidebar: {
  19. '/utils/query': [
  20. {
  21. title: '通用查询接口',
  22. collapsable: false,
  23. children: [
  24. {title: '通用查询', path: '/utils/query'}
  25. ]
  26. }
  27. ],
  28. '/dw': [
  29. {
  30. title: '数据仓库',
  31. collapsable: false,
  32. children: [
  33. {title: '配置计划', path: '/dw/dw_config'},
  34. {title: '搭建部署', path: '/dw/dw_deploy'}
  35. ]
  36. }
  37. ],
  38. '/report': [
  39. {
  40. title: '报表统计系统',
  41. collapsable: false,
  42. children: [
  43. {title: '接口文档', path: '/report/report_api'},
  44. {title: '数据结构设计', path: '/report/report_design'}
  45. ]
  46. }
  47. ],
  48. '/alarm': [
  49. {
  50. title: '报警系统',
  51. collapsable: false,
  52. children: [
  53. {title: '接口文档', path: '/alarm/alarm_api'},
  54. {title: '数据字典', path: '/alarm/alarm_dict'},
  55. {title: '数据结构设计', path: '/alarm/alarm_design'}
  56. ]
  57. }
  58. ],
  59. '/org': [
  60. {
  61. title: '人员组织权限',
  62. collapsable: false,
  63. children: [
  64. {title: '接口文档', path: '/org/org_api'},
  65. {title: '数据结构设计', path: '/org/org_design'}
  66. ]
  67. }
  68. ],
  69. '/task': [
  70. {
  71. title: '数据标准化',
  72. collapsable: false,
  73. children: [
  74. {title: '接口文档', path: '/task/task_api'},
  75. {title: '数据结构设计', path: '/task/task_design'}
  76. ]
  77. }
  78. ],
  79. '/dic': [
  80. {
  81. title: '数据标准化',
  82. collapsable: false,
  83. children: [
  84. {title: '接口文档', path: '/dic/dic_api'},
  85. {title: '数据结构设计', path: '/dic/dic_design'}
  86. ]
  87. }
  88. ],
  89. '/rwd': [
  90. {
  91. title: '定义数据',
  92. collapsable: false,
  93. children: [{ title: '类型定义', path: '/rwd/def_class' }, { title: '信息点定义', path: '/rwd/def_funcid' }]
  94. },
  95. {
  96. title: '实例数据',
  97. collapsable: false,
  98. children: [{ title: '对象数据', path: '/rwd/instance_object' }, { title: '关系数据', path: '/rwd/instance_relation' }]
  99. },
  100. { title: 'IOT', path: '/rwd/iot' }
  101. ]
  102. }
  103. }
  104. }