app.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. "window": {
  11. "pageOrientation": "portrait",
  12. "navigationBarTitleText": "神鹿峰小程序",
  13. "navigationBarTextStyle": "black",
  14. "navigationBarBackgroundColor": "#F8F8F8",
  15. "backgroundColor": "#F8F8F8",
  16. "backgroundColorTop": "#F4F5F6",
  17. "backgroundColorBottom": "#F4F5F6"
  18. },
  19. "tabBar": {
  20. "color": "#7A7E83",
  21. "selectedColor": "#007AFF",
  22. "borderStyle": "black",
  23. "backgroundColor": "#F8F8F8",
  24. "list": [
  25. {
  26. "pagePath": "pages/home/index",
  27. "iconPath": "static/home.png",
  28. "selectedIconPath": "static/homeHL.png",
  29. "text": "首页"
  30. },
  31. {
  32. "pagePath": "pages/map/index",
  33. "iconPath": "static/map.png",
  34. "selectedIconPath": "static/mapHL.png",
  35. "text": "地图"
  36. },
  37. {
  38. "pagePath": "pages/customer/index",
  39. "iconPath": "static/kf.png",
  40. "selectedIconPath": "static/kfHL.png",
  41. "text": "客服"
  42. },
  43. {
  44. "pagePath": "pages/my/index",
  45. "iconPath": "static/my.png",
  46. "selectedIconPath": "static/myHL.png",
  47. "text": "我的"
  48. }
  49. ]
  50. },
  51. "lazyCodeLoading": "requiredComponents",
  52. "usingComponents": {}
  53. }