pages.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "pages": [{
  3. "path": "pages/index/index",
  4. "style": {
  5. "navigationBarTitleText": "授权中",
  6. "navigationStyle": "custom"
  7. }
  8. },
  9. {
  10. "path": "pages/home/home",
  11. "style": {
  12. "navigationBarTitleText": "校车预约",
  13. "navigationStyle": "custom",
  14. "enablePullDownRefresh": true
  15. }
  16. },
  17. {
  18. "path": "pages/my/my",
  19. "style": {
  20. "navigationBarTitleText": "我的预约",
  21. "navigationStyle": "custom",
  22. "enablePullDownRefresh": true
  23. }
  24. }, {
  25. "path": "pages/record/record",
  26. "style": {
  27. "navigationBarTitleText": "预约记录--车队长",
  28. "navigationStyle": "custom",
  29. "enablePullDownRefresh": true
  30. }
  31. }, {
  32. "path": "pages/detail/detail",
  33. "style": {
  34. "navigationBarTitleText": "预约详情--车队长",
  35. "navigationStyle": "custom",
  36. "enablePullDownRefresh": false
  37. }
  38. },
  39. {
  40. "path": "pages/recordDriver/recordDriver",
  41. "style": {
  42. "navigationBarTitleText": "预约记录--司机",
  43. "navigationStyle": "custom",
  44. "enablePullDownRefresh": true
  45. }
  46. },
  47. {
  48. "path": "pages/detailDriver/detailDriver",
  49. "style": {
  50. "navigationBarTitleText": "预约详情--司机",
  51. "navigationStyle": "custom",
  52. "enablePullDownRefresh": false
  53. }
  54. },
  55. {
  56. "path": "pages/404/404",
  57. "style": {
  58. "navigationBarTitleText": "错误页面",
  59. "navigationStyle": "custom",
  60. "enablePullDownRefresh": false
  61. }
  62. }
  63. ],
  64. "globalStyle": {
  65. "navigationBarTextStyle": "black",
  66. "navigationBarTitleText": "",
  67. "navigationBarBackgroundColor": "#F8F8F8",
  68. "backgroundColor": "#F8F8F8",
  69. "app-plus": {
  70. "background": "#efeff4"
  71. }
  72. },
  73. // 导航栏
  74. "tabBar": {
  75. "color": "#A6A6A6", //导航栏默认文字颜色
  76. "selectedColor": "#3C50E8", //导航栏选中文字颜色
  77. "backgroundColor": "#fff", //导航栏背景颜色
  78. "borderStyle": "black", //导航栏上边框颜色(black,white)
  79. "position": "bottom", //导航栏位置(bottom,top)
  80. "list": [{
  81. "pagePath": "pages/home/home",
  82. "text": "首页",
  83. "iconPath": "static/school.png",
  84. "selectedIconPath": "static/school-active.png"
  85. },
  86. {
  87. "pagePath": "pages/my/my",
  88. "text": "我的",
  89. "iconPath": "static/my.png",
  90. "selectedIconPath": "static/my-active.png"
  91. }
  92. ]
  93. }
  94. }