pages.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. "navigationBarTitleText": "",
  19. "navigationBarBackgroundColor":"#FFEDEA"
  20. }
  21. },
  22. {
  23. "path": "pages/login/login",
  24. "style": {
  25. "navigationStyle": "custom"
  26. }
  27. },
  28. {
  29. "path": "pages/login/empower",
  30. "style": {
  31. "navigationBarTitleText": "天下养车"
  32. }
  33. },
  34. {
  35. "path": "pages/login/iphoneLogin",
  36. "style": {
  37. "navigationBarTitleText": "",
  38. "navigationBarBackgroundColor": "#FFFFFF"
  39. }
  40. },
  41. {
  42. "path": "pages/module/maintain",
  43. "style": {
  44. "navigationBarTitleText": "保养方案",
  45. "navigationBarBackgroundColor":"#FF4F00",
  46. "navigationBarTextStyle": "white"
  47. }
  48. },
  49. {
  50. "path": "pages/module/replaceGoods",
  51. "style": {
  52. "navigationBarTitleText": "可更换商品"
  53. }
  54. }
  55. ],
  56. "tabBar": {
  57. "color": "#8a8a8a",
  58. "selectedColor": "#FF4F00",
  59. "borderStyle": "black",
  60. "backgroundColor": "#ffffff",
  61. "list": [{
  62. "pagePath": "pages/index/index",
  63. "iconPath": "static/img/tabme1.png",
  64. "selectedIconPath": "static/img/tabme2.png",
  65. "text": "4S保养"
  66. },
  67. {
  68. "pagePath": "pages/shop/shopList",
  69. "iconPath": "static/img/tabshop1.png",
  70. "selectedIconPath": "static/img/tabshop2.png",
  71. "text": "4S门店"
  72. },
  73. {
  74. "pagePath": "pages/me/me",
  75. "iconPath": "static/img/tabme1.png",
  76. "selectedIconPath": "static/img/tabme2.png",
  77. "text": "我的"
  78. }
  79. ]
  80. },
  81. "globalStyle": {
  82. "navigationBarTextStyle": "black",
  83. "navigationBarTitleText": "uni-app",
  84. "navigationBarBackgroundColor": "#F8F8F8",
  85. "backgroundColor": "#F8F8F8"
  86. }
  87. }