pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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/cate",
  25. "style": {
  26. "app-plus": {
  27. "titleNView": false,
  28. "bounce": "none",
  29. "navigationStyle": "custom"
  30. }
  31. }
  32. },
  33. {
  34. "path": "pages/dream/comment",
  35. "style": {
  36. "app-plus": {
  37. "titleNView": false,
  38. "bounce": "none",
  39. "navigationStyle": "custom"
  40. }
  41. }
  42. },
  43. {
  44. "path" : "pages/dream/view",
  45. "style": {
  46. "app-plus": {
  47. "titleNView": false,
  48. "bounce": "none",
  49. "navigationStyle": "custom"
  50. }
  51. }
  52. },
  53. {
  54. "path" : "pages/dream/videoPlay",
  55. "style": {
  56. "app-plus": {
  57. "titleNView": false,
  58. "bounce": "none",
  59. "navigationStyle": "custom"
  60. }
  61. }
  62. },
  63. {
  64. "path" : "lib/dever/pages/web_view",
  65. "style": {
  66. "app-plus": {
  67. "titleNView": false,
  68. "bounce": "none",
  69. "navigationStyle": "custom"
  70. }
  71. }
  72. }
  73. ],
  74. "globalStyle": {
  75. "navigationBarTextStyle": "white",
  76. "navigationBarBackgroundColor": "#3c64c9",
  77. "navigationBarTitleText" : "幻境",
  78. "enablePullDownRefresh": true,
  79. "scrollIndicator": "none",
  80. "navigationStyle": "default",
  81. "app-plus": {
  82. "pullToRefresh": {
  83. "support": true,
  84. "color": "#3c64c9",
  85. "style": "default"
  86. }
  87. }
  88. },
  89. "tabBar": {
  90. "color": "#878d9d",
  91. "selectedColor": "#2a54a0",
  92. "borderStyle": "black",
  93. "backgroundColor": "#ffffff",
  94. "height": "50px",
  95. "fontSize": "10px",
  96. "iconWidth": "24px",
  97. "spacing": "3px",
  98. "list": [{
  99. "pagePath": "pages/index/index",
  100. "iconPath": "static/icon/nav01_a.png",
  101. "selectedIconPath": "static/icon/nav01.png",
  102. "text": "幻"
  103. },
  104. {
  105. "pagePath": "pages/im/explain",
  106. "iconPath": "static/icon/nav02_a.png",
  107. "selectedIconPath": "static/icon/nav02.png",
  108. "text": "镜"
  109. },
  110. {
  111. "pagePath": "pages/ucenter/ucenter",
  112. "iconPath": "static/icon/nav03_a.png",
  113. "selectedIconPath": "static/icon/nav03.png",
  114. "text": "灵"
  115. }
  116. ]
  117. },
  118. // 自动加载组件
  119. "easycom": {
  120. "custom": {
  121. "grace(.*)": "@/lib/graceUI/components/grace$1.vue"
  122. }
  123. }
  124. }