app.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "pages":[
  3. "pages/sign/sign",
  4. "pages/scene/scene",
  5. "pages/loop/loop",
  6. "pages/system/system",
  7. "pages/control/control"
  8. ],
  9. "window":{
  10. "backgroundTextStyle":"light",
  11. "navigationBarBackgroundColor":"#457aa3",
  12. "navigationBarTitleText": "远程遥控开关",
  13. "navigationBarTextStyle":"white"
  14. },
  15. "tabBar": {
  16. "list": [
  17. {
  18. "pagePath": "pages/scene/scene",
  19. "text":"列表",
  20. "iconPath": "/image/list.png",
  21. "selectedIconPath": "/image/list-add.png"
  22. },
  23. {
  24. "pagePath": "pages/control/control",
  25. "text": "主页",
  26. "iconPath": "/image/index.png",
  27. "selectedIconPath": "/image/index-add.png"
  28. },
  29. {
  30. "pagePath": "pages/system/system",
  31. "text": "系统",
  32. "iconPath": "/image/system.png",
  33. "selectedIconPath": "/image/system-add.png"
  34. },
  35. {
  36. "pagePath": "pages/loop/loop",
  37. "text": "回路",
  38. "iconPath": "/image/loop.png",
  39. "selectedIconPath": "/image/loop-add.png"
  40. }
  41. ]
  42. },
  43. "sitemapLocation": "sitemap.json",
  44. "permission": {
  45. "scope.userLocation": {
  46. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  47. }
  48. },
  49. "lazyCodeLoading" : "requiredComponents"
  50. }