pages.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": " "
  7. }
  8. }
  9. ,{
  10. "path" : "pages/Home/Home",
  11. "style" :
  12. {
  13. "navigationBarTitleText": "首页",
  14. "enablePullDownRefresh": false
  15. }
  16. }
  17. ,{
  18. "path" : "pages/BBeng/BBeng",
  19. "style" :
  20. {
  21. "navigationBarTitleText": "体感游戏",
  22. "enablePullDownRefresh": false
  23. }
  24. }
  25. ],
  26. "globalStyle": {
  27. "navigationStyle":"custom", //可以去掉小程序端的顶部导航
  28. "app-plus":{
  29. "titleNView":false // 去掉APP、H5的顶部导航
  30. },
  31. // "navigationBarTextStyle": "black",
  32. // "navigationBarTitleText": "uni-app",
  33. // "navigationBarBackgroundColor": "#F8F8F8",
  34. // "backgroundColor": "#F8F8F8",
  35. "bounce":"none"
  36. }
  37. }