pages.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "app-plus": {
  7. "titleNView": false,
  8. "bounce": "none",
  9. "navigationStyle": "custom"
  10. }
  11. }
  12. },
  13. {
  14. "path": "pages/dream/index",
  15. "style": {
  16. "app-plus": {
  17. "titleNView": false,
  18. "bounce": "none",
  19. "navigationStyle": "custom"
  20. }
  21. }
  22. },
  23. {
  24. "path" : "pages/dream/view",
  25. "style": {
  26. "app-plus": {
  27. "titleNView": false,
  28. "bounce": "none",
  29. "navigationStyle": "custom"
  30. }
  31. }
  32. },
  33. {
  34. "path" : "pages/dream/videoPlay",
  35. "style": {
  36. "app-plus": {
  37. "titleNView": false,
  38. "bounce": "none",
  39. "navigationStyle": "custom"
  40. }
  41. }
  42. }
  43. ],
  44. "globalStyle": {
  45. "navigationBarTextStyle": "white",
  46. "navigationBarBackgroundColor": "#3c64c9",
  47. "navigationBarTitleText" : "幻境",
  48. "enablePullDownRefresh": true,
  49. "scrollIndicator": "none",
  50. "navigationStyle": "default",
  51. "app-plus": {
  52. "pullToRefresh": {
  53. "support": true,
  54. "color": "#3c64c9",
  55. "style": "default"
  56. }
  57. }
  58. },
  59. "tabBar": {
  60. "color": "#878d9d",
  61. "selectedColor": "#2a54a0",
  62. "borderStyle": "black",
  63. "backgroundColor": "#ffffff",
  64. "height": "50px",
  65. "fontSize": "10px",
  66. "iconWidth": "24px",
  67. "spacing": "3px",
  68. "list": [{
  69. "pagePath": "pages/index/index",
  70. "iconPath": "static/icon/nav01_a.png",
  71. "selectedIconPath": "static/icon/nav01.png",
  72. "text": "幻"
  73. },
  74. {
  75. "pagePath": "pages/im/explain",
  76. "iconPath": "static/icon/nav02_a.png",
  77. "selectedIconPath": "static/icon/nav02.png",
  78. "text": "镜"
  79. },
  80. {
  81. "pagePath": "pages/ucenter/ucenter",
  82. "iconPath": "static/icon/nav03_a.png",
  83. "selectedIconPath": "static/icon/nav03.png",
  84. "text": "灵"
  85. }
  86. ]
  87. },
  88. // 自动加载组件
  89. "easycom": {
  90. "custom": {
  91. "grace(.*)": "@/lib/graceUI/components/grace$1.vue"
  92. }
  93. }
  94. }