app.json 877 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/my/index/index",
  5. "pages/user/identify/index"
  6. ],
  7. "tabBar": {
  8. "color": "#6e6d6b",
  9. "selectedColor": "#ff9966",
  10. "borderStyle": "black",
  11. "backgroundColor": "#ffffff",
  12. "list": [
  13. {
  14. "pagePath": "pages/index/index",
  15. "text": "首页",
  16. "iconPath": "/assets/tabBar/index.png",
  17. "selectedIconPath": "/assets/tabBar/index-select.png"
  18. },
  19. {
  20. "pagePath": "pages/my/index/index",
  21. "text": "我的",
  22. "iconPath": "/assets/tabBar/my.png",
  23. "selectedIconPath": "/assets/tabBar/my-select.png"
  24. }
  25. ]
  26. },
  27. "window": {
  28. "navigationBarBackgroundColor": "#ffffff",
  29. "navigationBarTitleText": "八大员在线练习",
  30. "navigationBarTextStyle": "black",
  31. "backgroundTextStyle": "dark"
  32. },
  33. "sitemapLocation": "sitemap.json"
  34. }