pages.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. "enablePullDownRefresh": true,
  14. "onReachBottomDistance": 0
  15. }
  16. }
  17. ],
  18. "globalStyle": {
  19. "navigationBarTextStyle": "white",
  20. "navigationBarTitleText": "小程序",
  21. "navigationBarBackgroundColor": "#ff0000",
  22. // 下拉时窗口显示的背景色
  23. "backgroundColor": "#007aff",
  24. // "enablePullDownRefresh": true,
  25. "backgroundTextStyle": "dark",
  26. "usingComponents": {
  27. "van-button": "/wxcomponents/vant/button/index"
  28. }
  29. },
  30. // "onReachBottomDistance": ${1:0}
  31. "tabBar": {
  32. "color": "#000",
  33. "selectedColor": "#ff0000",
  34. "borderStyle": "black",
  35. "backgroundColor": "#ffffff",
  36. "list": [{
  37. "pagePath": "pages/home/home",
  38. "iconPath": "/static/home.png",
  39. "selectedIconPath": "/static/home_actived.png",
  40. "text": "首页"
  41. }, {
  42. "pagePath": "pages/list/list",
  43. "iconPath": "/static/film.png",
  44. "selectedIconPath": "/static/film_actived.png",
  45. "text": "列表"
  46. }]
  47. },
  48. "uniIdRouter": {}
  49. }