app.json 882 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/classify/classify",
  5. "pages/message/message",
  6. "pages/user/user"
  7. ],
  8. "window": {
  9. "backgroundTextStyle": "light",
  10. "navigationBarBackgroundColor": "#fff",
  11. "navigationBarTitleText": "Weixin",
  12. "navigationBarTextStyle": "black"
  13. },
  14. "tabBar": {
  15. "list": [
  16. {
  17. "pagePath": "pages/home/home",
  18. "text": "首页"
  19. },
  20. {
  21. "pagePath": "pages/classify/classify",
  22. "text": "分类"
  23. },
  24. {
  25. "pagePath": "pages/message/message",
  26. "text": "信息"
  27. },
  28. {
  29. "pagePath": "pages/user/user",
  30. "text": "个人"
  31. }
  32. ]
  33. },
  34. "style": "v2",
  35. "sitemapLocation": "sitemap.json"
  36. }