pages.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/home/index",
  5. "style": {
  6. "navigationBarTitleText": "首页"
  7. }
  8. },
  9. {
  10. "path": "pages/my/index",
  11. "style": {
  12. "navigationBarTitleText": "我的"
  13. }
  14. },
  15. {
  16. "path": "pages/list/index",
  17. "style": {
  18. "navigationBarTitleText": "列表"
  19. }
  20. },
  21. {
  22. "path": "pages/detail/index",
  23. "style": {
  24. "navigationBarTitleText": "详情"
  25. }
  26. }
  27. ],
  28. "globalStyle": {
  29. "navigationBarTextStyle": "black",
  30. "navigationBarTitleText": "uni-app",
  31. "navigationBarBackgroundColor": "#F8F8F8",
  32. "backgroundColor": "#F8F8F8",
  33. "enablePullDownRefresh": true,
  34. // "onReachBottomDistance": 3
  35. "usingComponents": {
  36. "van-button": "/wxcomponents/vant/button/index",
  37. "van-icon": "/wxcomponents/vant/icon/index"
  38. }
  39. },
  40. "tabBar": {
  41. "color": "#000",
  42. "selectedColor": "#f00",
  43. "borderStyle": "black",
  44. "backgroundColor": "#ffffff",
  45. "list": [{
  46. "pagePath": "pages/home/index",
  47. "iconPath": "/static/home.png",
  48. "selectedIconPath": "/static/home_actived.png",
  49. "text": "首页"
  50. }, {
  51. "pagePath": "pages/list/index",
  52. "iconPath": "/static/film.png",
  53. "selectedIconPath": "/static/film_actived.png",
  54. "text": "列表"
  55. }, {
  56. "pagePath": "pages/my/index",
  57. "iconPath": "/static/me.png",
  58. "selectedIconPath": "/static/me_actived.png",
  59. "text": "我的"
  60. }]
  61. },
  62. "uniIdRouter": {}
  63. }