app.json 1.2 KB

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