pages.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "uni-app"
  7. }
  8. },
  9. {
  10. "path": "pages/user/user",
  11. "style": {
  12. "navigationStyle": "custom"
  13. }
  14. }
  15. ,{
  16. "path" : "pages/user/historySpend",
  17. "style" :
  18. {
  19. "navigationBarTitleText": "历史消费",
  20. "enablePullDownRefresh": true
  21. }
  22. },
  23. {
  24. "path" : "pages/user/historyDetail",
  25. "style" :
  26. {
  27. "navigationBarTitleText": "消费明细",
  28. "enablePullDownRefresh": true
  29. }
  30. }
  31. ,{
  32. "path" : "pages/user/checkReport",
  33. "style" :
  34. {
  35. "navigationBarTitleText": "车检报告",
  36. "enablePullDownRefresh": true
  37. }
  38. }
  39. ,{
  40. "path" : "pages/user/reportDetail",
  41. "style" :
  42. {
  43. "navigationBarTitleText": "检测报告",
  44. "enablePullDownRefresh": false
  45. }
  46. }
  47. ,{
  48. "path" : "pages/index/onlineBooking",
  49. "style" :
  50. {
  51. "navigationBarTitleText": "在线预约",
  52. "enablePullDownRefresh": false
  53. }
  54. }
  55. ,{
  56. "path" : "pages/user/myBespeak",
  57. "style" :
  58. {
  59. "navigationBarTitleText": "我的预约",
  60. "enablePullDownRefresh": true
  61. }
  62. }
  63. ,{
  64. "path" : "pages/user/bespeakDetail",
  65. "style" :
  66. {
  67. "navigationBarTitleText": "预约详情",
  68. "enablePullDownRefresh": true
  69. }
  70. }
  71. ],
  72. "tabBar": {
  73. "color": "#8a8a8a",
  74. "selectedColor": "#FF4F00",
  75. "borderStyle": "black",
  76. "backgroundColor": "#ffffff",
  77. "list": [{
  78. "pagePath": "pages/index/index",
  79. // "iconPath": "static/img/table_icon_homepage1.png",
  80. // "selectedIconPath": "static/img/table_icon_homepage2.png",
  81. "text": "首页"
  82. },
  83. {
  84. "pagePath": "pages/user/user",
  85. // "iconPath": "static/img/tabme1.png",
  86. // "selectedIconPath": "static/img/tabme2.png",
  87. "text": "我的"
  88. }
  89. ]
  90. },
  91. "globalStyle": {
  92. "navigationBarTextStyle": "black",
  93. "navigationBarTitleText": "uni-app",
  94. "navigationBarBackgroundColor": "#F8F8F8",
  95. "backgroundColor": "#F8F8F8"
  96. },
  97. "uniIdRouter": {}
  98. }