app.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "pages": [
  3. "pages/login/index",
  4. "pages/login/verify-code",
  5. "pages/index/index",
  6. "pages/discover/index",
  7. "pages/message/index",
  8. "pages/mine/index",
  9. "pages/search/index",
  10. "pages/calendar/index"
  11. ],
  12. "window": {
  13. "navigationBarTextStyle": "black",
  14. "navigationBarTitleText": "小鹅通",
  15. "navigationBarBackgroundColor": "#F8F8F8",
  16. "backgroundColor": "#F8F8F8"
  17. },
  18. "tabBar": {
  19. "color": "#888",
  20. "selectedColor": "#3498db",
  21. "backgroundColor": "#fff",
  22. "borderStyle": "black",
  23. "list": [
  24. {
  25. "pagePath": "pages/index/index",
  26. "iconPath": "static/tabbar/home.png",
  27. "selectedIconPath": "static/tabbar/home_selected.png",
  28. "text": "首页"
  29. },
  30. {
  31. "pagePath": "pages/discover/index",
  32. "iconPath": "static/tabbar/discover.png",
  33. "selectedIconPath": "static/tabbar/discover_selected.png",
  34. "text": "发现"
  35. },
  36. {
  37. "pagePath": "pages/message/index",
  38. "iconPath": "static/tabbar/message.png",
  39. "selectedIconPath": "static/tabbar/message_selected.png",
  40. "text": "消息"
  41. },
  42. {
  43. "pagePath": "pages/mine/index",
  44. "iconPath": "static/tabbar/mine.png",
  45. "selectedIconPath": "static/tabbar/mine_selected.png",
  46. "text": "我的"
  47. }
  48. ]
  49. },
  50. "usingComponents": {}
  51. }