app.json 797 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/my/index"
  5. ],
  6. "subPackages": [],
  7. "window": {
  8. "navigationBarTextStyle": "black",
  9. "navigationBarTitleText": "铂林筛查",
  10. "navigationBarBackgroundColor": "#ffffff",
  11. "backgroundColor": "#ffffff"
  12. },
  13. "tabBar": {
  14. "color": "#B2B6BE",
  15. "selectedColor": "#10AEFF",
  16. "borderStyle": "white",
  17. "list": [
  18. {
  19. "pagePath": "pages/index/index",
  20. "text": "首页",
  21. "iconPath": "static/tabbar/record.png",
  22. "selectedIconPath": "static/tabbar/record_on.png"
  23. },
  24. {
  25. "pagePath": "pages/my/index",
  26. "text": "个人中心",
  27. "iconPath": "static/tabbar/mine.png",
  28. "selectedIconPath": "static/tabbar/mine_on.png"
  29. }
  30. ]
  31. },
  32. "usingComponents": {}
  33. }