config.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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: '/dpt/' }
  12. ],
  13. sidebarDepth: 1,
  14. displayAllHeaders: true,
  15. sidebar: {
  16. '/utils/query': [
  17. {
  18. title: '通用查询接口',
  19. collapsable: false,
  20. children: [
  21. {title: '通用查询', path: '/utils/query'}
  22. ]
  23. }
  24. ],
  25. '/org': [
  26. {
  27. title: '人员组织权限',
  28. collapsable: false,
  29. children: [
  30. {title: '接口文档', path: '/org/org_api'},
  31. {title: '数据结构设计', path: '/org/org_design'}
  32. ]
  33. }
  34. ],
  35. '/dpt': [
  36. {
  37. title: '数据标准化',
  38. collapsable: false,
  39. children: [
  40. {title: '接口文档', path: '/dpt/dpt_api'},
  41. {title: '数据结构设计', path: '/dpt/dpt_design'}
  42. ]
  43. }
  44. ],
  45. '/dic': [
  46. {
  47. title: '数据标准化',
  48. collapsable: false,
  49. children: [
  50. {title: '接口文档', path: '/dic/dic_api'},
  51. {title: '数据结构设计', path: '/dic/dic_design'}
  52. ]
  53. }
  54. ],
  55. '/rwd': [
  56. {
  57. title: '定义数据',
  58. collapsable: false,
  59. children: [{ title: '类型定义', path: '/rwd/def_class' }, { title: '信息点定义', path: '/rwd/def_funcid' }]
  60. },
  61. {
  62. title: '实例数据',
  63. collapsable: false,
  64. children: [{ title: '对象数据', path: '/rwd/instance_object' }, { title: '关系数据', path: '/rwd/instance_relation' }]
  65. },
  66. { title: 'IOT', path: '/rwd/iot' }
  67. ]
  68. }
  69. }
  70. }