config.js 824 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. module.exports = {
  2. title: '结算系统接口文档',
  3. description: '结算系统的所有接口',
  4. port: 8105,
  5. themeConfig: {
  6. //displayAllHeaders: true,
  7. nav: [
  8. { text: '首页', link: '/' },
  9. { text: '结算系统后台接口', link: '/backendApi/' },
  10. { text: '结算系统前台接口', link: '/frontendApi/' },
  11. ],
  12. sidebar: {
  13. '/backendApi/': [
  14. '',
  15. '1_base',
  16. '2_shop',
  17. '3_user',
  18. '4_finance',
  19. ],
  20. '/frontendApi/': [
  21. '',
  22. '1_base',
  23. '2_user',
  24. '3_bonus',
  25. '4_finance',
  26. '5_article',
  27. '6_message',
  28. '7_config',
  29. '8_shop',
  30. ],
  31. '/': [
  32. '',
  33. ],
  34. },
  35. },
  36. markdown: {
  37. lineNumbers: true,
  38. toc: {
  39. includeLevel: [1, 2, 3]
  40. }
  41. }
  42. }