app.json 848 B

1234567891011121314151617181920212223242526272829303132333435
  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. "enablePullDownRefresh": true,
  12. "backgroundTextStyle": "dark"
  13. },
  14. "tabBar": {
  15. "color": "#000",
  16. "selectedColor": "#ff0000",
  17. "borderStyle": "black",
  18. "backgroundColor": "#ffffff",
  19. "list": [
  20. {
  21. "pagePath": "pages/home/home",
  22. "iconPath": "/static/home.png",
  23. "selectedIconPath": "/static/home_actived.png",
  24. "text": "首页"
  25. },
  26. {
  27. "pagePath": "pages/list/list",
  28. "iconPath": "/static/film.png",
  29. "selectedIconPath": "/static/film_actived.png",
  30. "text": "列表"
  31. }
  32. ]
  33. },
  34. "usingComponents": {}
  35. }