config.js 3.7 KB

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