pages.json 2.5 KB

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