pages.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. "path": "pages/tabbar/user",
  10. "style": {
  11. "navigationBarTitleText": "我的",
  12. "navigationStyle": "custom"
  13. }
  14. }
  15. ],
  16. "globalStyle": {
  17. "navigationBarTextStyle": "black",
  18. "navigationBarTitleText": "uni-app",
  19. "navigationBarBackgroundColor": "#F8F8F8",
  20. "backgroundColor": "#F8F8F8"
  21. },
  22. "tabBar": {
  23. "color": "#666",
  24. "selectedColor": "#FF5A5F",
  25. "borderStyle": "black",
  26. "list": [{
  27. "text": "首页",
  28. "pagePath": "pages/index/index",
  29. "iconPath": "static/tarbar/index.png",
  30. "selectedIconPath": "static/tarbar/index-active.png"
  31. }, {
  32. "text": "商品",
  33. "pagePath": "pages/product/list",
  34. "iconPath": "static/tarbar/product.png",
  35. "selectedIconPath": "static/tarbar/product-active.png"
  36. }, {
  37. "text": "我的",
  38. "pagePath": "pages/tabbar/user",
  39. "iconPath": "static/tarbar/ucenter.png",
  40. "selectedIconPath": "static/tarbar/ucenter-active.png"
  41. }]
  42. }
  43. }