pages.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. "path" : "pages/index/confirmYuyue",
  56. "style" :
  57. {
  58. "navigationBarTitleText": "确认预约",
  59. "enablePullDownRefresh": false
  60. }
  61. }
  62. ,{
  63. "path" : "pages/user/myBespeak",
  64. "style" :
  65. {
  66. "navigationBarTitleText": "我的预约",
  67. "enablePullDownRefresh": true
  68. }
  69. }
  70. ,{
  71. "path" : "pages/user/bespeakDetail",
  72. "style" :
  73. {
  74. "navigationBarTitleText": "预约详情",
  75. "enablePullDownRefresh": true
  76. }
  77. }
  78. ],
  79. "tabBar": {
  80. "color": "#8a8a8a",
  81. "selectedColor": "#FF4F00",
  82. "borderStyle": "black",
  83. "backgroundColor": "#ffffff",
  84. "list": [{
  85. "pagePath": "pages/index/index",
  86. // "iconPath": "static/img/table_icon_homepage1.png",
  87. // "selectedIconPath": "static/img/table_icon_homepage2.png",
  88. "text": "首页"
  89. },
  90. {
  91. "pagePath": "pages/user/user",
  92. // "iconPath": "static/img/tabme1.png",
  93. // "selectedIconPath": "static/img/tabme2.png",
  94. "text": "我的"
  95. }
  96. ]
  97. },
  98. "globalStyle": {
  99. "navigationBarTextStyle": "black",
  100. "navigationBarTitleText": "uni-app",
  101. "navigationBarBackgroundColor": "#F8F8F8",
  102. "backgroundColor": "#F8F8F8"
  103. },
  104. "uniIdRouter": {}
  105. }