pages.json 2.3 KB

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