app.json 901 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/logs/logs",
  5. "pages/home/home",
  6. "pages/mine/mine",
  7. "pages/todoList/todoList"
  8. ],
  9. "window": {
  10. "navigationBarTextStyle": "black",
  11. "navigationBarTitleText": "xiaochengxu",
  12. "navigationBarBackgroundColor": "#ff0000"
  13. },
  14. "tabBar": {
  15. "list": [
  16. {
  17. "pagePath": "pages/home/home",
  18. "text": "首页",
  19. "iconPath": "./pages/image/首页.png",
  20. "selectedIconPath": "./pages/image/首页 (1).png"
  21. },
  22. {
  23. "pagePath": "pages/mine/mine",
  24. "text": "我的",
  25. "iconPath": "./pages/image/我的.png",
  26. "selectedIconPath": "./pages/image/我的 (1).png"
  27. }
  28. ],
  29. "color": "#f49329",
  30. "selectedColor": "#ff0000"
  31. },
  32. "style": "v2",
  33. "componentFramework": "glass-easel",
  34. "sitemapLocation": "sitemap.json",
  35. "lazyCodeLoading": "requiredComponents"
  36. }