app.json 2.2 KB

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