pages.json 901 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "uni-app"
  7. }
  8. },
  9. {
  10. "path": "pages/taBar/one/one",
  11. "style": {
  12. "navigationBarTitleText": "我得分页1"
  13. }
  14. },
  15. {
  16. "path": "pages/taBar/three/three",
  17. "style": {
  18. "navigationBarTitleText": "我得分页3"
  19. }
  20. }
  21. ],
  22. "tabBar": {
  23. "color": "#C0C4CC",
  24. "list": [
  25. {
  26. "pagePath": "pages/index/index",
  27. "text": "uni-app"
  28. },
  29. {
  30. "pagePath": "pages/taBar/one/one",
  31. "text": "二页"
  32. },
  33. {
  34. "pagePath": "pages/taBar/three/three",
  35. "text": "三页"
  36. }
  37. ]
  38. },
  39. "globalStyle": {
  40. "navigationBarTextStyle": "black",
  41. "navigationBarTitleText": "uni-app",
  42. "navigationBarBackgroundColor": "#F8F8F8",
  43. "backgroundColor": "#F8F8F8"
  44. }
  45. }