app.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/shop/shopList",
  5. "pages/me/me",
  6. "pages/login/login",
  7. "pages/login/empower",
  8. "pages/login/iphoneLogin"
  9. ],
  10. "subPackages": [],
  11. "window": {
  12. "navigationBarTextStyle": "black",
  13. "navigationBarTitleText": "uni-app",
  14. "navigationBarBackgroundColor": "#F8F8F8",
  15. "backgroundColor": "#F8F8F8"
  16. },
  17. "tabBar": {
  18. "color": "#8a8a8a",
  19. "selectedColor": "#FF4F00",
  20. "borderStyle": "black",
  21. "backgroundColor": "#ffffff",
  22. "list": [
  23. {
  24. "pagePath": "pages/index/index",
  25. "iconPath": "static/img/tabme1.png",
  26. "selectedIconPath": "static/img/tabme2.png",
  27. "text": "4S保养"
  28. },
  29. {
  30. "pagePath": "pages/shop/shopList",
  31. "iconPath": "static/img/tabshop1.png",
  32. "selectedIconPath": "static/img/tabshop2.png",
  33. "text": "4S门店"
  34. },
  35. {
  36. "pagePath": "pages/me/me",
  37. "iconPath": "static/img/tabme1.png",
  38. "selectedIconPath": "static/img/tabme2.png",
  39. "text": "我的"
  40. }
  41. ]
  42. },
  43. "permission": {
  44. "scope.userLocation": {
  45. "desc": "获取定位"
  46. }
  47. },
  48. "usingComponents": {}
  49. }