app.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. "news/index",
  44. "news/detail"
  45. ]
  46. }
  47. ],
  48. "window": {
  49. "pageOrientation": "portrait",
  50. "navigationBarTitleText": "神鹿峰小程序",
  51. "navigationBarTextStyle": "black",
  52. "navigationBarBackgroundColor": "#F8F8F8",
  53. "backgroundColor": "#F8F8F8",
  54. "backgroundColorTop": "#F4F5F6",
  55. "backgroundColorBottom": "#F4F5F6"
  56. },
  57. "tabBar": {
  58. "color": "#7A7E83",
  59. "selectedColor": "#007AFF",
  60. "borderStyle": "black",
  61. "backgroundColor": "#F8F8F8",
  62. "list": [
  63. {
  64. "pagePath": "pages/home/index",
  65. "iconPath": "static/home.png",
  66. "selectedIconPath": "static/homeHL.png",
  67. "text": "首页"
  68. },
  69. {
  70. "pagePath": "pages/map/index",
  71. "iconPath": "static/map.png",
  72. "selectedIconPath": "static/mapHL.png",
  73. "text": "地图"
  74. },
  75. {
  76. "pagePath": "pages/customer/index",
  77. "iconPath": "static/kf.png",
  78. "selectedIconPath": "static/kfHL.png",
  79. "text": "客服"
  80. },
  81. {
  82. "pagePath": "pages/my/index",
  83. "iconPath": "static/my.png",
  84. "selectedIconPath": "static/myHL.png",
  85. "text": "我的"
  86. }
  87. ]
  88. },
  89. "lazyCodeLoading": "requiredComponents",
  90. "usingComponents": {}
  91. }