pages.json 2.2 KB

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