app.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "pages": [
  3. "pages/tabbar/index/index",
  4. "pages/tabbar/news/index",
  5. "pages/tabbar/my/index"
  6. ],
  7. "subPackages": [],
  8. "window": {
  9. "navigationBarTextStyle": "black",
  10. "navigationBarTitleText": "uView",
  11. "navigationBarBackgroundColor": "#005598",
  12. "backgroundColor": "#f2f2f2"
  13. },
  14. "tabBar": {
  15. "color": "#7f8389",
  16. "selectedColor": "#465CFF",
  17. "backgroundColor": "#f7f7fa",
  18. "list": [
  19. {
  20. "pagePath": "pages/tabbar/index/index",
  21. "text": "首页",
  22. "iconPath": "static/images/tabbar/assembly_default_3x.png",
  23. "selectedIconPath": "static/images/tabbar/assembly_selected_3x.png"
  24. },
  25. {
  26. "pagePath": "pages/tabbar/news/index",
  27. "text": "资讯",
  28. "iconPath": "static/images/tabbar/layout_default_3x.png",
  29. "selectedIconPath": "static/images/tabbar/layout_selected_3x.png"
  30. },
  31. {
  32. "pagePath": "pages/tabbar/my/index",
  33. "text": "我的",
  34. "iconPath": "static/images/tabbar/my_default_3x.png",
  35. "selectedIconPath": "static/images/tabbar/my_selected_3x.png"
  36. }
  37. ]
  38. },
  39. "usingComponents": {}
  40. }