pages.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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/picture/detail",
  11. "style" :
  12. {
  13. "navigationBarTitleText": "",
  14. "enablePullDownRefresh": false
  15. }
  16. }
  17. ,{
  18. "path" : "pages/index/item",
  19. "style" :
  20. {
  21. "navigationBarTitleText": "图片直播",
  22. "enablePullDownRefresh": false
  23. }
  24. }
  25. ,{
  26. "path" : "pages/index/user",
  27. "style" :
  28. {
  29. "navigationBarTitleText": "个人中心",
  30. "enablePullDownRefresh": false
  31. }
  32. }
  33. ],
  34. "globalStyle": {
  35. "navigationBarTextStyle": "black",
  36. "navigationStyle": "custom",
  37. "app-plus": {
  38. "scrollIndicator": "none"
  39. }
  40. }
  41. }