app.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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": ["getLocation", "chooseLocation"],
  17. "window": {
  18. "backgroundColor": "#F6F6F6",
  19. "backgroundTextStyle": "light",
  20. "navigationBarBackgroundColor": "#F6F6F6",
  21. "navigationBarTitleText": "汇很多",
  22. "navigationBarTextStyle": "black",
  23. "pageOrientation": "portrait"
  24. },
  25. "tabBar": {
  26. "selectedColor": "#1195db",
  27. "color": "#8a8a8a",
  28. "list": [
  29. {
  30. "pagePath": "pages/takePhoto/takePhoto",
  31. "text": "随身拍",
  32. "selectedIconPath": "./images/tabs/camera-.png",
  33. "iconPath": "./images/tabs/camera.png"
  34. },
  35. {
  36. "pagePath": "pages/maritime/maritime",
  37. "text": "海事",
  38. "selectedIconPath": "./images/tabs/ship-.png",
  39. "iconPath": "./images/tabs/ship.png"
  40. },
  41. {
  42. "pagePath": "pages/securityCheck/securityCheck",
  43. "text": "海事安检",
  44. "selectedIconPath": "./images/tabs/check-.png",
  45. "iconPath": "./images/tabs/check.png"
  46. }
  47. ]
  48. },
  49. "permission": {
  50. "scope.userLocation": {
  51. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  52. },
  53. "scope.chooseLocation": {
  54. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  55. }
  56. },
  57. "lazyCodeLoading": "requiredComponents",
  58. "sitemapLocation": "sitemap.json",
  59. "style": "v2",
  60. "cache": [
  61. {
  62. "pagePath": "pages/takePhoto/takePhoto",
  63. "text": "随身拍",
  64. "selectedIconPath": "./images/tabs/camera-.png",
  65. "iconPath": "./images/tabs/camera.png"
  66. },
  67. {
  68. "pagePath": "pages/maritime/maritime",
  69. "text": "海事",
  70. "selectedIconPath": "./images/tabs/ship-.png",
  71. "iconPath": "./images/tabs/ship.png"
  72. },
  73. {
  74. "pagePath": "pages/securityCheck/securityCheck",
  75. "text": "海事安检",
  76. "selectedIconPath": "./images/tabs/check-.png",
  77. "iconPath": "./images/tabs/check.png"
  78. },
  79. {
  80. "pagePath": "pages/train/train",
  81. "text": "培训",
  82. "selectedIconPath": "./images/tabs/train-.png",
  83. "iconPath": "./images/tabs/train.png"
  84. }
  85. ]
  86. }