pages.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "easycom": {
  3. "^x-(.*)": "@/components/x-$1.vue", // 匹配components目录内的vue文件
  4. "^g-(.*)": "@/components/global/g-$1.vue",
  5. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
  6. },
  7. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  8. {
  9. "path": "pages/index/index",
  10. "style": {
  11. // "navigationStyle": "custom",
  12. "navigationBarTitleText": "问真排盘"
  13. }
  14. },
  15. {
  16. "path": "pages/index/horoscope",
  17. "style": {
  18. "navigationBarTitleText": "问真八字"
  19. }
  20. },
  21. {
  22. "path": "pages/record/index",
  23. "style": {
  24. "navigationStyle": "custom"
  25. }
  26. },
  27. {
  28. "path": "pages/school/index",
  29. "style": {
  30. "navigationStyle": "custom"
  31. }
  32. },
  33. {
  34. "path": "pages/school/reader",
  35. "style": {
  36. "navigationStyle": "custom"
  37. }
  38. },
  39. {
  40. "path": "pages/school/bookParticulars",
  41. "style": {
  42. // "navigationStyle": "custom",
  43. "navigationBarTitleText": ""
  44. }
  45. },
  46. {
  47. "path": "pages/setting/index",
  48. "style": {
  49. "navigationStyle": "custom"
  50. }
  51. }
  52. ],
  53. "globalStyle": {
  54. "navigationBarTextStyle": "black",
  55. "navigationBarTitleText": "uni-app",
  56. "navigationBarBackgroundColor": "#ffffff",
  57. "backgroundColor": "#F8F8F8"
  58. },
  59. // 设置 TabBar
  60. "tabBar": {
  61. "color": "#707070",
  62. "selectedColor": "#b2955d",
  63. "backgroundColor": "#fff",
  64. "borderStyle": "white",
  65. "list": [{
  66. "text": "排盘",
  67. "pagePath": "pages/index/index",
  68. "iconPath": "static/tabs/array_default.png",
  69. "selectedIconPath": "static/tabs/array_selected.png"
  70. },
  71. {
  72. "text": "记录",
  73. "pagePath": "pages/record/index",
  74. "iconPath": "static/tabs/record_default.png",
  75. "selectedIconPath": "static/tabs/record_selected.png"
  76. },
  77. {
  78. "text": "学堂",
  79. "pagePath": "pages/school/index",
  80. "iconPath": "static/tabs/school_default.png",
  81. "selectedIconPath": "static/tabs/school_selected.png"
  82. },
  83. {
  84. "text": "设置",
  85. "pagePath": "pages/setting/index",
  86. "iconPath": "static/tabs/option_default.png",
  87. "selectedIconPath": "static/tabs/option_selected.png"
  88. }
  89. ]
  90. },
  91. "uniIdRouter": {}
  92. }