app.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/list/list",
  5. "pages/detail/detail",
  6. "pages/messages/messages",
  7. "pages/profile/profile",
  8. "pages/settings/settings"
  9. ],
  10. "window": {
  11. "navigationBarBackgroundColor": "#3a4861",
  12. "navigationBarTextStyle": "white",
  13. "navigationBarTitleText": "赛事服务",
  14. "backgroundColor": "#bcc0c9",
  15. "backgroundTextStyle": "light",
  16. "enablePullDownRefresh": false,
  17. "onReachBottomDistance": 50
  18. },
  19. "tabBar": {
  20. "color": "#999",
  21. "selectedColor": "#444",
  22. "backgroundColor": "#fff",
  23. "borderStyle": "black",
  24. "list": [
  25. {
  26. "pagePath": "pages/index/index",
  27. "text": "首页",
  28. "iconPath": "assets/home.png",
  29. "selectedIconPath": "assets/home-active.png"
  30. },
  31. {
  32. "pagePath": "pages/messages/messages",
  33. "text": "消息",
  34. "iconPath": "assets/message.png",
  35. "selectedIconPath": "assets/message-active.png"
  36. },
  37. {
  38. "pagePath": "pages/profile/profile",
  39. "text": "我的",
  40. "iconPath": "assets/profile.png",
  41. "selectedIconPath": "assets/profile-active.png"
  42. }
  43. ],
  44. "position": "bottom"
  45. }
  46. }