app.json 1.1 KB

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