app.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. "order/detail",
  19. "order/info",
  20. "order/order"
  21. ]
  22. },
  23. {
  24. "root": "pagesMy",
  25. "pages": [
  26. "coupon/index",
  27. "article/add",
  28. "article/index",
  29. "opinion/index",
  30. "service/index",
  31. "account/index"
  32. ]
  33. },
  34. {
  35. "root": "pagesHome",
  36. "pages": [
  37. "article/index",
  38. "info/index",
  39. "type/index",
  40. "type/info",
  41. "hotel/index",
  42. "hotel/info",
  43. "hotel/detail",
  44. "ticket/index",
  45. "ticket/info",
  46. "weather/index",
  47. "notice/index",
  48. "notice/detail",
  49. "news/index",
  50. "news/detail"
  51. ]
  52. }
  53. ],
  54. "window": {
  55. "pageOrientation": "portrait",
  56. "navigationBarTitleText": "神鹿峰小程序",
  57. "navigationBarTextStyle": "black",
  58. "navigationBarBackgroundColor": "#F8F8F8",
  59. "backgroundColor": "#F8F8F8",
  60. "backgroundColorTop": "#F4F5F6",
  61. "backgroundColorBottom": "#F4F5F6"
  62. },
  63. "tabBar": {
  64. "color": "#7A7E83",
  65. "selectedColor": "#007AFF",
  66. "borderStyle": "black",
  67. "backgroundColor": "#F8F8F8",
  68. "list": [
  69. {
  70. "pagePath": "pages/home/index",
  71. "iconPath": "static/home.png",
  72. "selectedIconPath": "static/homeHL.png",
  73. "text": "首页"
  74. },
  75. {
  76. "pagePath": "pages/map/index",
  77. "iconPath": "static/map.png",
  78. "selectedIconPath": "static/mapHL.png",
  79. "text": "地图"
  80. },
  81. {
  82. "pagePath": "pages/customer/index",
  83. "iconPath": "static/kf.png",
  84. "selectedIconPath": "static/kfHL.png",
  85. "text": "客服"
  86. },
  87. {
  88. "pagePath": "pages/my/index",
  89. "iconPath": "static/my.png",
  90. "selectedIconPath": "static/myHL.png",
  91. "text": "我的"
  92. }
  93. ]
  94. },
  95. "lazyCodeLoading": "requiredComponents",
  96. "usingComponents": {}
  97. }