config.js 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. { text: '天气服务', link: '/wther/' }
  17. ],
  18. sidebarDepth: 2,
  19. displayAllHeaders: true,
  20. sidebar: {
  21. '/utils/query': [
  22. {
  23. title: '通用查询接口',
  24. collapsable: false,
  25. children: [{ title: '通用查询', path: '/utils/query' }]
  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. { title: 'sqoop部署及简介', path: '/dw/sqoop'}]
  36. }
  37. ],
  38. '/report': [
  39. {
  40. title: '报表统计系统',
  41. collapsable: false,
  42. children: [{ title: '接口文档', path: '/report/report_api' }, { title: '数据结构设计', path: '/report/report_design' }]
  43. }
  44. ],
  45. '/alarm': [
  46. {
  47. title: '报警系统',
  48. collapsable: false,
  49. children: [
  50. { title: '接口文档', path: '/alarm/alarm_api' },
  51. { title: '数据字典', path: '/alarm/alarm_dict' },
  52. { title: '数据结构设计', path: '/alarm/alarm_design' }
  53. ]
  54. }
  55. ],
  56. '/org': [
  57. {
  58. title: '人员组织权限',
  59. collapsable: false,
  60. children: [{ title: '接口文档', path: '/org/org_api' }, { title: '数据结构设计', path: '/org/org_design' }]
  61. }
  62. ],
  63. '/task': [
  64. {
  65. title: '数据标准化',
  66. collapsable: false,
  67. children: [{ title: '接口文档', path: '/task/task_api' }, { title: '数据结构设计', path: '/task/task_design' }]
  68. }
  69. ],
  70. '/dic': [
  71. {
  72. title: '数据标准化',
  73. collapsable: false,
  74. children: [{ title: '接口文档', path: '/dic/dic_api' }, { title: '数据结构设计', path: '/dic/dic_design' }]
  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. path: '/rwd/schema'
  86. },
  87. {
  88. title: '实例数据',
  89. collapsable: false,
  90. children: [{ title: '对象数据', path: '/rwd/instance_object' }, { title: '关系数据', path: '/rwd/instance_relation' }]
  91. },
  92. { title: 'IOT', path: '/rwd/iot' }
  93. ],
  94. '/wther': [
  95. {
  96. title: '天气服务',
  97. collapsable: false,
  98. children: [{ title: '服务介绍', path: '/wther/wther_prod' }, { title: '接口2021版', path: '/wther/wther_api_2021' }, { title: '接口2020版', path: '/wther/wther_api_2020' }]
  99. }
  100. ],
  101. }
  102. }
  103. }