app.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/history/history",
  5. "pages/myCenter/myCenter",
  6. "pages/history/detail/detail",
  7. "pages/login/index",
  8. "pages/myCenter/personalData/personalData",
  9. "pages/myCenter/updatePassword/updatePassword",
  10. "pages/service_agreement/service_agreement"
  11. ],
  12. "subPackages": [],
  13. "window": {
  14. "navigationBarTextStyle": "black",
  15. "navigationBarTitleText": "uni-app",
  16. "navigationBarBackgroundColor": "#F8F8F8",
  17. "backgroundColor": "#F8F8F8"
  18. },
  19. "tabBar": {
  20. "color": "#7A7E83",
  21. "selectedColor": "#1296db",
  22. "borderStyle": "black",
  23. "backgroundColor": "#ffffff",
  24. "list": [
  25. {
  26. "pagePath": "pages/index/index",
  27. "iconPath": "static/tabbar/index.png",
  28. "selectedIconPath": "static/tabbar/indexEd.png",
  29. "text": "首页"
  30. },
  31. {
  32. "pagePath": "pages/history/history",
  33. "iconPath": "static/tabbar/history.png",
  34. "selectedIconPath": "static/tabbar/historyEd.png",
  35. "text": "历史"
  36. },
  37. {
  38. "pagePath": "pages/myCenter/myCenter",
  39. "iconPath": "static/tabbar/myCenter.png",
  40. "selectedIconPath": "static/tabbar/myCenterEd.png",
  41. "text": "我的"
  42. }
  43. ]
  44. },
  45. "usingComponents": {}
  46. }