pages.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "用油查询",
  7. "navigationStyle": "custom"
  8. }
  9. },
  10. {
  11. "path": "pages/index/displacement",
  12. "style": {
  13. "navigationBarTitleText": "车型选择",
  14. "navigationStyle": "custom"
  15. }
  16. },
  17. {
  18. "path": "pages/index/carGroup",
  19. "style": {
  20. "navigationBarTitleText": "车型选择",
  21. "navigationStyle": "custom"
  22. }
  23. },
  24. {
  25. "path": "pages/index/history",
  26. "style": {
  27. //"navigationBarTitleText": "历史查询",
  28. "navigationStyle": "custom"
  29. }
  30. },
  31. {
  32. "path": "pages/index/search",
  33. "style": {
  34. "navigationBarTitleText": "搜索",
  35. "navigationStyle": "custom"
  36. }
  37. },
  38. {
  39. "path": "pages/index/byItem",
  40. "style": {
  41. "navigationBarTitleText": "选择保养项目",
  42. "navigationStyle": "custom"
  43. }
  44. },
  45. {
  46. "path": "pages/index/engineOil",
  47. "style": {
  48. "navigationBarTitleText": "机油",
  49. "navigationStyle": "custom"
  50. }
  51. },
  52. {
  53. "path": "pages/index/gearboxOil",
  54. "style": {
  55. "navigationBarTitleText": "变速箱油",
  56. "navigationStyle": "custom"
  57. }
  58. },
  59. {
  60. "path": "pages/index/goodsDetail",
  61. "style": {
  62. "navigationBarTitleText": "商品详情",
  63. "navigationStyle": "custom",
  64. "usingComponents": {
  65. "player-component": "plugin://player/video"
  66. }
  67. }
  68. },
  69. {
  70. "path": "pages/index/carConfiguration",
  71. "style": {
  72. "navigationBarTitleText": "车辆配置",
  73. "navigationStyle": "custom"
  74. }
  75. },
  76. {
  77. "path": "pages/index/maintenance",
  78. "style": {
  79. "navigationBarTitleText": "保养周期",
  80. "navigationStyle": "custom"
  81. }
  82. }
  83. ],
  84. "globalStyle": {
  85. "navigationBarTextStyle": "black",
  86. "navigationBarTitleText": "用油查询",
  87. "navigationBarBackgroundColor": "#F8F8F8",
  88. "backgroundColor": "#F8F8F8"
  89. },
  90. "uniIdRouter": {}
  91. }