app.json 983 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/message/message",
  5. "pages/contact/contact",
  6. "pages/info/info"
  7. ],
  8. "window": {
  9. "backgroundTextStyle": "light",
  10. "navigationBarBackgroundColor": "#13A7A0",
  11. "navigationBarTitleText": "WeChat",
  12. "navigationBarTextStyle": "black"
  13. },
  14. "tabBar": {
  15. "list": [
  16. {
  17. "pagePath": "pages/home/home",
  18. "text": "首页",
  19. "iconPath": "/images/tabs/home.png",
  20. "selectedIconPath": "/images/tabs/home-active.png"
  21. },
  22. {
  23. "pagePath": "pages/message/message",
  24. "text": "消息",
  25. "iconPath": "/images/tabs/message.png",
  26. "selectedIconPath": "/images/tabs/message-active.png"
  27. },
  28. {
  29. "pagePath": "pages/contact/contact",
  30. "text": "联系我们",
  31. "iconPath": "/images/tabs/contact.png",
  32. "selectedIconPath": "/images/tabs/contact-active.png"
  33. }
  34. ]
  35. },
  36. "style": "v2",
  37. "sitemapLocation": "sitemap.json"
  38. }