pages.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. "tabBar": {
  57. "color": "#8a8a8a",
  58. "selectedColor": "#FF4F00",
  59. "borderStyle": "black",
  60. "backgroundColor": "#ffffff",
  61. "list": [{
  62. "pagePath": "pages/index/index",
  63. // "iconPath": "static/img/table_icon_homepage1.png",
  64. // "selectedIconPath": "static/img/table_icon_homepage2.png",
  65. "text": "首页"
  66. },
  67. {
  68. "pagePath": "pages/user/user",
  69. // "iconPath": "static/img/tabme1.png",
  70. // "selectedIconPath": "static/img/tabme2.png",
  71. "text": "我的"
  72. }
  73. ]
  74. },
  75. "globalStyle": {
  76. "navigationBarTextStyle": "black",
  77. "navigationBarTitleText": "uni-app",
  78. "navigationBarBackgroundColor": "#F8F8F8",
  79. "backgroundColor": "#F8F8F8"
  80. },
  81. "uniIdRouter": {}
  82. }