pages.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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/shop/shopList",
  11. "style": {
  12. "navigationBarTitleText": "4S门店"
  13. }
  14. },
  15. {
  16. "path": "pages/me/me",
  17. "style": {
  18. "navigationStyle": "custom"
  19. }
  20. }
  21. ],
  22. "tabBar": {
  23. "color": "#8a8a8a",
  24. "selectedColor": "#FF4F00",
  25. "borderStyle": "black",
  26. "backgroundColor": "#ffffff",
  27. "list": [{
  28. "pagePath": "pages/index/index",
  29. "iconPath": "static/img/tabme1.png",
  30. "selectedIconPath": "static/img/tabme2.png",
  31. "text": "4S保养"
  32. },
  33. {
  34. "pagePath": "pages/shop/shopList",
  35. "iconPath": "static/img/tabshop1.png",
  36. "selectedIconPath": "static/img/tabshop2.png",
  37. "text": "4S门店"
  38. },
  39. {
  40. "pagePath": "pages/me/me",
  41. "iconPath": "static/img/tabme1.png",
  42. "selectedIconPath": "static/img/tabme2.png",
  43. "text": "我的"
  44. }
  45. ]
  46. },
  47. "globalStyle": {
  48. "navigationBarTextStyle": "black",
  49. "navigationBarTitleText": "uni-app",
  50. "navigationBarBackgroundColor": "#F8F8F8",
  51. "backgroundColor": "#F8F8F8"
  52. }
  53. }