1
0

app.json 1.6 KB

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