app.json 868 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/list/list"
  5. ],
  6. "usingComponents": {
  7. "van-button": "/wxcomponents/vant/button/index"
  8. },
  9. "window": {
  10. "navigationBarTextStyle": "white",
  11. "navigationBarTitleText": "小程序",
  12. "navigationBarBackgroundColor": "#ff0000",
  13. "backgroundColor": "#007aff",
  14. "backgroundTextStyle": "dark"
  15. },
  16. "tabBar": {
  17. "color": "#000",
  18. "selectedColor": "#ff0000",
  19. "borderStyle": "black",
  20. "backgroundColor": "#ffffff",
  21. "list": [
  22. {
  23. "pagePath": "pages/home/home",
  24. "iconPath": "/static/home.png",
  25. "selectedIconPath": "/static/home_actived.png",
  26. "text": "首页"
  27. },
  28. {
  29. "pagePath": "pages/list/list",
  30. "iconPath": "/static/film.png",
  31. "selectedIconPath": "/static/film_actived.png",
  32. "text": "列表"
  33. }
  34. ]
  35. }
  36. }