app.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/index/index",
  5. "pages/logs/logs",
  6. "pages/list/list",
  7. "pages/my/my"
  8. ],
  9. "window": {
  10. "navigationBarTextStyle": "white",
  11. "navigationBarTitleText": "你好",
  12. "navigationBarBackgroundColor": "#f00",
  13. "navigationStyle": "default"
  14. },
  15. "tabBar": {
  16. "custom": false,
  17. "color": "#000000",
  18. "selectedColor": "#f00",
  19. "backgroundColor": "#fff",
  20. "list": [
  21. {
  22. "pagePath": "pages/home/home",
  23. "text": "首页",
  24. "iconPath": "/icon/home.png",
  25. "selectedIconPath": "/icon/home1.png"
  26. },
  27. {
  28. "pagePath": "pages/list/list",
  29. "text": "列表",
  30. "iconPath": "/icon/shop.png",
  31. "selectedIconPath": "/icon/shop1.png"
  32. },
  33. {
  34. "pagePath": "pages/my/my",
  35. "text": "我的",
  36. "iconPath": "/icon/my.png",
  37. "selectedIconPath": "/icon/my1.png"
  38. }
  39. ]
  40. },
  41. "componentFramework": "glass-easel",
  42. "sitemapLocation": "sitemap.json",
  43. "lazyCodeLoading": "requiredComponents"
  44. }