app.json 813 B

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