app.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/index/index",
  5. "pages/params/params"
  6. ],
  7. "window": {
  8. "navigationBarTextStyle": "black",
  9. "navigationStyle": "custom"
  10. },
  11. "tabBar": {
  12. "color": "#64748b",
  13. "selectedColor": "#0f766e",
  14. "backgroundColor": "#ffffff",
  15. "borderStyle": "black",
  16. "list": [
  17. {
  18. "pagePath": "pages/home/home",
  19. "text": "首页",
  20. "iconPath": "assets/tab/home.png",
  21. "selectedIconPath": "assets/tab/home-active.png"
  22. },
  23. {
  24. "pagePath": "pages/index/index",
  25. "text": "控制",
  26. "iconPath": "assets/tab/control.png",
  27. "selectedIconPath": "assets/tab/control-active.png"
  28. },
  29. {
  30. "pagePath": "pages/params/params",
  31. "text": "参数",
  32. "iconPath": "assets/tab/params.png",
  33. "selectedIconPath": "assets/tab/params-active.png"
  34. }
  35. ]
  36. },
  37. "permission": {
  38. "scope.userLocation": {
  39. "desc": "用于安卓系统扫描附近蓝牙设备"
  40. }
  41. },
  42. "style": "v2",
  43. "renderer": "skyline",
  44. "rendererOptions": {
  45. "skyline": {
  46. "defaultDisplayBlock": true,
  47. "defaultContentBox": true,
  48. "tagNameStyleIsolation": "legacy",
  49. "disableABTest": true,
  50. "sdkVersionBegin": "3.0.0",
  51. "sdkVersionEnd": "15.255.255"
  52. }
  53. },
  54. "componentFramework": "glass-easel",
  55. "sitemapLocation": "sitemap.json",
  56. "lazyCodeLoading": "requiredComponents"
  57. }