app.json 804 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/rank/rank"
  5. ],
  6. "subPackages": [],
  7. "window": {
  8. "navigationBarTextStyle": "black",
  9. "navigationBarTitleText": "uView",
  10. "navigationBarBackgroundColor": "#FFFFFF",
  11. "backgroundColor": "#FFFFFF"
  12. },
  13. "tabBar": {
  14. "color": "#bdbdbd",
  15. "selectedColor": "#eb5a10",
  16. "borderStyle": "black",
  17. "backgroundColor": "#fff",
  18. "list": [
  19. {
  20. "pagePath": "pages/home/home",
  21. "iconPath": "static/img/tab1c.png",
  22. "selectedIconPath": "static/img/tab1o.png",
  23. "text": "首页"
  24. },
  25. {
  26. "pagePath": "pages/rank/rank",
  27. "iconPath": "static/img/tab2c.png",
  28. "selectedIconPath": "static/img/tab2o.png",
  29. "text": "工具排行榜"
  30. }
  31. ]
  32. },
  33. "usingComponents": {}
  34. }