app.json 2.1 KB

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