pages.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. "path": "pages/404/404",
  40. "style": {
  41. "navigationBarTitleText": "错误页面",
  42. "navigationStyle": "custom",
  43. "enablePullDownRefresh": false
  44. }
  45. }
  46. ],
  47. "globalStyle": {
  48. "navigationBarTextStyle": "black",
  49. "navigationBarTitleText": "校车预约",
  50. "navigationBarBackgroundColor": "#F8F8F8",
  51. "backgroundColor": "#F8F8F8",
  52. "app-plus": {
  53. "background": "#efeff4"
  54. }
  55. },
  56. // 导航栏
  57. "tabBar": {
  58. "color": "#A6A6A6", //导航栏默认文字颜色
  59. "selectedColor": "#3C50E8", //导航栏选中文字颜色
  60. "backgroundColor": "#fff", //导航栏背景颜色
  61. "borderStyle": "black", //导航栏上边框颜色(black,white)
  62. "position": "bottom", //导航栏位置(bottom,top)
  63. "list": [{
  64. "pagePath": "pages/home/home",
  65. "text": "首页",
  66. "iconPath": "static/school.png",
  67. "selectedIconPath": "static/school-active.png"
  68. },
  69. {
  70. "pagePath": "pages/my/my",
  71. "text": "我的",
  72. "iconPath": "static/my.png",
  73. "selectedIconPath": "static/my-active.png"
  74. }
  75. ]
  76. }
  77. }