pages.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. "path": "pages/login/login",
  23. "style": {
  24. "navigationStyle": "custom"
  25. }
  26. },
  27. {
  28. "path": "pages/login/empower",
  29. "style": {
  30. "navigationBarTitleText": "欧洲维修"
  31. }
  32. },
  33. {
  34. "path": "pages/login/iphoneLogin",
  35. "style": {
  36. "navigationBarTitleText": "",
  37. "navigationBarBackgroundColor": "#FFFFFF"
  38. }
  39. }
  40. ],
  41. "tabBar": {
  42. "color": "#8a8a8a",
  43. "selectedColor": "#FF4F00",
  44. "borderStyle": "black",
  45. "backgroundColor": "#ffffff",
  46. "list": [{
  47. "pagePath": "pages/index/index",
  48. "iconPath": "static/img/tabme1.png",
  49. "selectedIconPath": "static/img/tabme2.png",
  50. "text": "4S保养"
  51. },
  52. {
  53. "pagePath": "pages/shop/shopList",
  54. "iconPath": "static/img/tabshop1.png",
  55. "selectedIconPath": "static/img/tabshop2.png",
  56. "text": "4S门店"
  57. },
  58. {
  59. "pagePath": "pages/me/me",
  60. "iconPath": "static/img/tabme1.png",
  61. "selectedIconPath": "static/img/tabme2.png",
  62. "text": "我的"
  63. }
  64. ]
  65. },
  66. "globalStyle": {
  67. "navigationBarTextStyle": "black",
  68. "navigationBarTitleText": "uni-app",
  69. "navigationBarBackgroundColor": "#F8F8F8",
  70. "backgroundColor": "#F8F8F8"
  71. }
  72. }