app.json 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "pages": [
  3. "pages/demo/demo",
  4. "pages/index/index",
  5. "pages/takePhoto/takePhoto",
  6. "pages/takePhoto/success/success",
  7. "pages/share/share",
  8. "pages/newCachePage/newCachePage",
  9. "pages/takeBill/takeBill",
  10. "pages/takeBill/success/success",
  11. "pages/takeBill/canvas/canvas",
  12. "pages/maritime/maritime",
  13. "pages/securityCheck/securityCheck",
  14. "pages/train/train"
  15. ],
  16. "requiredPrivateInfos": [
  17. "getLocation",
  18. "chooseLocation",
  19. "startLocationUpdateBackground",
  20. "onLocationChange",
  21. "startLocationUpdate"
  22. ],
  23. "window": {
  24. "backgroundColor": "#F6F6F6",
  25. "backgroundTextStyle": "light",
  26. "navigationBarBackgroundColor": "#F6F6F6",
  27. "navigationBarTitleText": "汇很多",
  28. "navigationBarTextStyle": "black",
  29. "pageOrientation": "portrait"
  30. },
  31. "tabBar": {
  32. "selectedColor": "#1195db",
  33. "color": "#8a8a8a",
  34. "list": [
  35. {
  36. "pagePath": "pages/takePhoto/takePhoto",
  37. "text": "随身拍",
  38. "selectedIconPath": "./images/tabs/camera-.png",
  39. "iconPath": "./images/tabs/camera.png"
  40. },
  41. {
  42. "pagePath": "pages/maritime/maritime",
  43. "text": "海事",
  44. "selectedIconPath": "./images/tabs/ship-.png",
  45. "iconPath": "./images/tabs/ship.png"
  46. },
  47. {
  48. "pagePath": "pages/securityCheck/securityCheck",
  49. "text": "海事安检",
  50. "selectedIconPath": "./images/tabs/check-.png",
  51. "iconPath": "./images/tabs/check.png"
  52. }
  53. ]
  54. },
  55. "permission": {
  56. "scope.userLocation": {
  57. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  58. },
  59. "scope.userLocationBackground": {
  60. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  61. },
  62. "scope.chooseLocation": {
  63. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  64. }
  65. },
  66. "lazyCodeLoading": "requiredComponents",
  67. "sitemapLocation": "sitemap.json",
  68. "style": "v2",
  69. "cache": [
  70. {
  71. "pagePath": "pages/takePhoto/takePhoto",
  72. "text": "随身拍",
  73. "selectedIconPath": "./images/tabs/camera-.png",
  74. "iconPath": "./images/tabs/camera.png"
  75. },
  76. {
  77. "pagePath": "pages/maritime/maritime",
  78. "text": "海事",
  79. "selectedIconPath": "./images/tabs/ship-.png",
  80. "iconPath": "./images/tabs/ship.png"
  81. },
  82. {
  83. "pagePath": "pages/securityCheck/securityCheck",
  84. "text": "海事安检",
  85. "selectedIconPath": "./images/tabs/check-.png",
  86. "iconPath": "./images/tabs/check.png"
  87. },
  88. {
  89. "pagePath": "pages/train/train",
  90. "text": "培训",
  91. "selectedIconPath": "./images/tabs/train-.png",
  92. "iconPath": "./images/tabs/train.png"
  93. }
  94. ]
  95. }