app.json 870 B

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