pages.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. //"navigationBarTitleText": "配件查询",
  7. "enablePullDownRefresh": true,
  8. "navigationStyle": "custom"
  9. }
  10. },
  11. {
  12. "path": "pages/index/list",
  13. "style": {
  14. "navigationBarTitleText": "配件列表"
  15. //"navigationStyle": "custom"
  16. }
  17. },
  18. {
  19. "path": "pages/index/datail",
  20. "style": {
  21. "navigationBarTitleText": "配件详情"
  22. //"navigationStyle": "custom"
  23. }
  24. },
  25. {
  26. "path": "pages/index/applyCx",
  27. "style": {
  28. "navigationBarTitleText": "适用车型"
  29. //"navigationStyle": "custom"
  30. }
  31. },
  32. {
  33. "path": "pages/goods/goods",
  34. "style": {
  35. "navigationBarTitleText": "配件查询",
  36. "enablePullDownRefresh": true
  37. //"navigationStyle": "custom"
  38. }
  39. }
  40. /* {
  41. "path": "pages/index/carModel",
  42. "style": {
  43. //"navigationBarTitleText": "配件查询"
  44. "navigationStyle": "custom"
  45. }
  46. } */
  47. ],
  48. "globalStyle": {
  49. "navigationBarTextStyle": "black",
  50. "navigationBarTitleText": "配件查询",
  51. "navigationBarBackgroundColor": "#F8F8F8",
  52. "backgroundColor": "#F8F8F8"
  53. }
  54. }