app.json 893 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/home/home",
  5. "pages/my/my",
  6. "pages/record/record",
  7. "pages/detail/detail",
  8. "pages/404/404"
  9. ],
  10. "window": {
  11. "navigationBarTextStyle": "black",
  12. "navigationBarTitleText": "校车预约",
  13. "navigationBarBackgroundColor": "#F8F8F8",
  14. "backgroundColor": "#F8F8F8"
  15. },
  16. "tabBar": {
  17. "color": "#A6A6A6",
  18. "selectedColor": "#3C50E8",
  19. "backgroundColor": "#fff",
  20. "borderStyle": "black",
  21. "position": "bottom",
  22. "list": [
  23. {
  24. "pagePath": "pages/home/home",
  25. "text": "首页",
  26. "iconPath": "static/school.png",
  27. "selectedIconPath": "static/school-active.png"
  28. },
  29. {
  30. "pagePath": "pages/my/my",
  31. "text": "我的",
  32. "iconPath": "static/my.png",
  33. "selectedIconPath": "static/my-active.png"
  34. }
  35. ]
  36. },
  37. "usingComponents": {}
  38. }