pages.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. }
  15. },
  16. {
  17. "path": "pages/my/my",
  18. "style": {
  19. "navigationBarTitleText": "我的预约",
  20. "navigationStyle": "custom"
  21. }
  22. }, {
  23. "path": "pages/record/record",
  24. "style": {
  25. "navigationBarTitleText": "校车预约",
  26. "navigationStyle": "custom",
  27. "enablePullDownRefresh": false
  28. }
  29. }, {
  30. "path": "pages/detail/detail",
  31. "style": {
  32. "navigationBarTitleText": "校车预约",
  33. "navigationStyle": "custom",
  34. "enablePullDownRefresh": false
  35. }
  36. }
  37. ],
  38. "globalStyle": {
  39. "navigationBarTextStyle": "black",
  40. "navigationBarTitleText": "校车预约",
  41. "navigationBarBackgroundColor": "#F8F8F8",
  42. "backgroundColor": "#F8F8F8",
  43. "app-plus": {
  44. "background": "#efeff4"
  45. }
  46. },
  47. // 导航栏
  48. "tabBar": {
  49. "color": "#A6A6A6", //导航栏默认文字颜色
  50. "selectedColor": "#3C50E8", //导航栏选中文字颜色
  51. "backgroundColor": "#fff", //导航栏背景颜色
  52. "borderStyle": "black", //导航栏上边框颜色(black,white)
  53. "position": "bottom", //导航栏位置(bottom,top)
  54. "list": [{
  55. "pagePath": "pages/home/home",
  56. "text": "首页",
  57. "iconPath": "static/school.png",
  58. "selectedIconPath": "static/school-active.png"
  59. },
  60. {
  61. "pagePath": "pages/my/my",
  62. "text": "我的",
  63. "iconPath": "static/my.png",
  64. "selectedIconPath": "static/my-active.png"
  65. }
  66. ]
  67. }
  68. }