pages.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. "navigationBarTitleText": "首页"
  13. }
  14. }
  15. ],
  16. "globalStyle": {
  17. "navigationBarTextStyle": "black",
  18. "navigationBarTitleText": "你好啊",
  19. "navigationBarBackgroundColor": "#ff0000",
  20. // "backgroundColor": "#ffff00",
  21. "enablePullDownRefresh": true,
  22. "backgroundTextStyle": "light",
  23. "usingComponents": {
  24. "van-button": "/wxcomponents/vant/button/index",
  25. "van-rate": "/wxcomponents/vant/rate/index"
  26. }
  27. },
  28. "tabBar": {
  29. "color": "#000000",
  30. "selectedColor": "#ff0000",
  31. "borderStyle": "black",
  32. "backgroundColor": "#ffffff",
  33. "list": [{
  34. "pagePath": "pages/index/index",
  35. "text": "基础",
  36. "iconPath": "/static/me.png",
  37. "selectedIconPath": "/static/me_actived.png"
  38. }, {
  39. "pagePath": "pages/home/home",
  40. "text": "首页",
  41. "iconPath": "/static/home.png",
  42. "selectedIconPath": "/static/home_actived.png"
  43. }]
  44. },
  45. "uniIdRouter": {}
  46. }