app.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "pages": [
  3. "pages/home/index",
  4. "pages/my/index",
  5. "pages/list/index",
  6. "pages/detail/index"
  7. ],
  8. "subPackages": [],
  9. "window": {
  10. "navigationBarTextStyle": "black",
  11. "navigationBarTitleText": "uni-app",
  12. "navigationBarBackgroundColor": "#F8F8F8",
  13. "backgroundColor": "#F8F8F8",
  14. "enablePullDownRefresh": true
  15. },
  16. "tabBar": {
  17. "color": "#000",
  18. "selectedColor": "#f00",
  19. "borderStyle": "black",
  20. "backgroundColor": "#ffffff",
  21. "list": [
  22. {
  23. "pagePath": "pages/home/index",
  24. "iconPath": "/static/home.png",
  25. "selectedIconPath": "/static/home_actived.png",
  26. "text": "首页"
  27. },
  28. {
  29. "pagePath": "pages/list/index",
  30. "iconPath": "/static/film.png",
  31. "selectedIconPath": "/static/film_actived.png",
  32. "text": "列表"
  33. },
  34. {
  35. "pagePath": "pages/my/index",
  36. "iconPath": "/static/me.png",
  37. "selectedIconPath": "/static/me_actived.png",
  38. "text": "我的"
  39. }
  40. ]
  41. },
  42. "usingComponents": {
  43. "van-button": "/wxcomponents/vant/button/index",
  44. "van-icon": "/wxcomponents/vant/icon/index"
  45. }
  46. }