app.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/home/index",
  5. "pages/map/index",
  6. "pages/customer/index",
  7. "pages/my/index"
  8. ],
  9. "subPackages": [
  10. {
  11. "root": "pagesIndex",
  12. "pages": [
  13. "login/index",
  14. "like/index",
  15. "comment/index",
  16. "collect/index",
  17. "order/index"
  18. ]
  19. },
  20. {
  21. "root": "pagesMy",
  22. "pages": [
  23. "coupon/index",
  24. "article/add",
  25. "article/index",
  26. "opinion/index",
  27. "account/index"
  28. ]
  29. },
  30. {
  31. "root": "pagesHome",
  32. "pages": [
  33. "article/index",
  34. "info/index",
  35. "type/index",
  36. "type/info",
  37. "hotel/index",
  38. "hotel/info",
  39. "hotel/detail",
  40. "weather/index",
  41. "notice/index",
  42. "notice/detail"
  43. ]
  44. }
  45. ],
  46. "window": {
  47. "pageOrientation": "portrait",
  48. "navigationBarTitleText": "神鹿峰小程序",
  49. "navigationBarTextStyle": "black",
  50. "navigationBarBackgroundColor": "#F8F8F8",
  51. "backgroundColor": "#F8F8F8",
  52. "backgroundColorTop": "#F4F5F6",
  53. "backgroundColorBottom": "#F4F5F6"
  54. },
  55. "tabBar": {
  56. "color": "#7A7E83",
  57. "selectedColor": "#007AFF",
  58. "borderStyle": "black",
  59. "backgroundColor": "#F8F8F8",
  60. "list": [
  61. {
  62. "pagePath": "pages/home/index",
  63. "iconPath": "static/home.png",
  64. "selectedIconPath": "static/homeHL.png",
  65. "text": "首页"
  66. },
  67. {
  68. "pagePath": "pages/map/index",
  69. "iconPath": "static/map.png",
  70. "selectedIconPath": "static/mapHL.png",
  71. "text": "地图"
  72. },
  73. {
  74. "pagePath": "pages/customer/index",
  75. "iconPath": "static/kf.png",
  76. "selectedIconPath": "static/kfHL.png",
  77. "text": "客服"
  78. },
  79. {
  80. "pagePath": "pages/my/index",
  81. "iconPath": "static/my.png",
  82. "selectedIconPath": "static/myHL.png",
  83. "text": "我的"
  84. }
  85. ]
  86. },
  87. "lazyCodeLoading": "requiredComponents",
  88. "usingComponents": {}
  89. }