app.json 706 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/my/my"
  5. ],
  6. "window": {
  7. "navigationBarTextStyle": "black",
  8. "navigationBarTitleText": "",
  9. "navigationBarBackgroundColor": "#B9D9FF"
  10. },
  11. "tabBar": {
  12. "backgroundColor": "#ffffff",
  13. "color": "#767676",
  14. "selectedColor": "#31B4FF",
  15. "list": [
  16. {
  17. "pagePath": "pages/home/home",
  18. "iconPath": "/static/imgs/home.png",
  19. "selectedIconPath": "/static/imgs/home-a.png",
  20. "text": "首页"
  21. },
  22. {
  23. "pagePath": "pages/my/my",
  24. "iconPath": "/static/imgs/my.png",
  25. "selectedIconPath": "/static/imgs/my-a.png",
  26. "text": "我的"
  27. }
  28. ]
  29. },
  30. "usingComponents": {}
  31. }