app.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "pages": [
  3. "pages/my/my",
  4. "pages/index/index",
  5. "pages/logs/logs",
  6. "pages/predict/predict"
  7. ],
  8. "window": {
  9. "backgroundTextStyle": "light",
  10. "navigationBarBackgroundColor": "#fff",
  11. "navigationBarTitleText": "首页",
  12. "navigationBarTextStyle": "black"
  13. },
  14. "tabBar": {
  15. "color": "#000",
  16. "selectedColor": "f23030",
  17. "list": [{
  18. "pagePath": "pages/index/index",
  19. "text": "首页",
  20. "iconPath": "static/home_icon_default_sel.png",
  21. "selectedIconPath": "static/home_icon_default_sel@2x.png"
  22. },
  23. {
  24. "pagePath": "pages/predict/predict",
  25. "text": "志愿预测",
  26. "iconPath": "static/home_icon_volunteer_nor.png"
  27. },
  28. {
  29. "pagePath": "pages/my/my",
  30. "text": "我的",
  31. "iconPath": "./static/home_icon_my_nor@2x.png"
  32. }
  33. ]
  34. },
  35. "sitemapLocation": "sitemap.json"
  36. }