app.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "pages": [
  3. "pages/tabBar/home/home",
  4. "pages/tabBar/discover/discover",
  5. "pages/tabBar/tree/tree",
  6. "pages/tabBar/shopping/shopping",
  7. "pages/tabBar/mine/mine"
  8. ],
  9. "window": {
  10. "navigationBarTextStyle": "black",
  11. "navigationBarTitleText": "飞鸟有味",
  12. "navigationBarBackgroundColor": "#FFFFFF",
  13. "backgroundColor": "#F8F8F8"
  14. },
  15. "tabBar": {
  16. "color": "#898989",
  17. "selectedColor": "#000000",
  18. "borderStyle": "black",
  19. "backgroundColor": "#FFFFFF",
  20. "list": [
  21. {
  22. "pagePath": "pages/tabBar/home/home",
  23. "iconPath": "static/tabBar/home.png",
  24. "selectedIconPath": "static/tabBar/home-active.png",
  25. "text": "首页"
  26. },
  27. {
  28. "pagePath": "pages/tabBar/discover/discover",
  29. "iconPath": "static/tabBar/bag.png",
  30. "selectedIconPath": "static/tabBar/bag-active.png",
  31. "text": "逛一逛"
  32. },
  33. {
  34. "pagePath": "pages/tabBar/tree/tree",
  35. "iconPath": "static/tabBar/tree.png",
  36. "selectedIconPath": "static/tabBar/tree-active.png",
  37. "text": "守护"
  38. },
  39. {
  40. "pagePath": "pages/tabBar/shopping/shopping",
  41. "iconPath": "static/tabBar/car.png",
  42. "selectedIconPath": "static/tabBar/car-active.png",
  43. "text": "购物车"
  44. },
  45. {
  46. "pagePath": "pages/tabBar/mine/mine",
  47. "iconPath": "static/tabBar/user.png",
  48. "selectedIconPath": "static/tabBar/user-active.png",
  49. "text": "个人中心"
  50. }
  51. ]
  52. },
  53. "permission": {
  54. "scope.userLocation": {
  55. "desc": "需要获取您的位置以显示地图"
  56. }
  57. },
  58. "usingComponents": {}
  59. }