pages.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/home/home",
  5. "style": {
  6. "navigationBarTitleText": "首页"
  7. }
  8. },
  9. {
  10. "path": "pages/list/list",
  11. "style": {
  12. "navigationBarTitleText": "列表"
  13. }
  14. }
  15. ],
  16. "globalStyle": {
  17. "navigationBarTextStyle": "white",
  18. "navigationBarTitleText": "小程序",
  19. "navigationBarBackgroundColor": "#ff0000",
  20. // 下拉时窗口显示的背景色
  21. "backgroundColor": "#007aff",
  22. "enablePullDownRefresh": true,
  23. "backgroundTextStyle": "dark",
  24. // "onReachBottomDistance": ${1:0}
  25. },
  26. "tabBar": {
  27. "color": "#000",
  28. "selectedColor": "#ff0000",
  29. "borderStyle": "black",
  30. "backgroundColor": "#ffffff",
  31. "list": [{
  32. "pagePath": "pages/home/home",
  33. "iconPath": "/static/home.png",
  34. "selectedIconPath": "/static/home_actived.png",
  35. "text": "首页"
  36. }, {
  37. "pagePath": "pages/list/list",
  38. "iconPath": "/static/film.png",
  39. "selectedIconPath": "/static/film_actived.png",
  40. "text": "列表"
  41. }]
  42. },
  43. "uniIdRouter": {}
  44. }