pages.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. }
  15. },
  16. {
  17. "path": "pages/index/carGroup",
  18. "style": {
  19. "navigationBarTitleText": "车型选择"
  20. }
  21. },
  22. {
  23. "path": "pages/index/history",
  24. "style": {
  25. "navigationBarTitleText": "历史查询"
  26. }
  27. },
  28. {
  29. "path": "pages/index/search",
  30. "style": {
  31. "navigationBarTitleText": "搜索"
  32. }
  33. },
  34. {
  35. "path": "pages/index/byItem",
  36. "style": {
  37. "navigationBarTitleText": "选择保养项目"
  38. }
  39. },
  40. {
  41. "path": "pages/index/engineOil",
  42. "style": {
  43. "navigationBarTitleText": "机油"
  44. }
  45. },
  46. {
  47. "path": "pages/index/gearboxOil",
  48. "style": {
  49. "navigationBarTitleText": "变速箱油"
  50. }
  51. },
  52. {
  53. "path": "pages/index/goodsDetail",
  54. "style": {
  55. "navigationBarTitleText": "商品详情"
  56. }
  57. },
  58. {
  59. "path": "pages/index/carConfiguration",
  60. "style": {
  61. "navigationBarTitleText": "车辆配置"
  62. }
  63. },
  64. {
  65. "path": "pages/index/maintenance",
  66. "style": {
  67. "navigationBarTitleText": "保养周期"
  68. }
  69. }
  70. ],
  71. "globalStyle": {
  72. "navigationBarTextStyle": "black",
  73. "navigationBarTitleText": "配件查询",
  74. "navigationBarBackgroundColor": "#F8F8F8",
  75. "backgroundColor": "#F8F8F8"
  76. },
  77. "uniIdRouter": {}
  78. }