app.json 891 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/search/search",
  5. "pages/me/me"
  6. ],
  7. "window": {
  8. "backgroundTextStyle": "light",
  9. "navigationBarBackgroundColor": "#2E8B57",
  10. "navigationBarTitleText": "主页",
  11. "navigationBarTextStyle": "white"
  12. },
  13. "tabBar": {
  14. "color": "#ccc",
  15. "list": [{
  16. "pagePath": "pages/index/index",
  17. "text": "主页",
  18. "iconPath": "images/home_icon.png",
  19. "selectedIconPath": "images/home_active_icon.png"
  20. },
  21. {
  22. "pagePath": "pages/search/search",
  23. "text": "搜索",
  24. "iconPath": "images/search_icon.png",
  25. "selectedIconPath": "images/search_active_icon.png"
  26. },
  27. {
  28. "pagePath": "pages/me/me",
  29. "text": "我的",
  30. "iconPath": "images/my_icon.png",
  31. "selectedIconPath": "images/my_active_icon.png"
  32. }]
  33. },
  34. "style": "v2",
  35. "sitemapLocation": "sitemap.json"
  36. }