app.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/logs/logs",
  5. "pages/rise/rise",
  6. "pages/drop/drop",
  7. "pages/me/me",
  8. "pages/details/details"
  9. ],
  10. "window": {
  11. "backgroundTextStyle": "light",
  12. "navigationBarBackgroundColor": "#fff",
  13. "navigationBarTitleText": "首页",
  14. "navigationBarTextStyle": "black"
  15. },
  16. "tabBar": {
  17. "color": "#fff",
  18. "selectedColor": "#fff",
  19. "backgroundColor": "#000",
  20. "borderStyle": "white",
  21. "list": [
  22. {
  23. "selectedIconPath": "images/tabBar011.png",
  24. "iconPath": "images/tabBar001.png",
  25. "pagePath": "pages/index/index",
  26. "text": "首页"
  27. },
  28. {
  29. "selectedIconPath": "images/tabBar012.png",
  30. "iconPath": "images/tabBar002.png",
  31. "pagePath": "pages/rise/rise",
  32. "text": "涨幅"
  33. },
  34. {
  35. "selectedIconPath": "images/tabBar013.png",
  36. "iconPath": "images/tabBar003.png",
  37. "pagePath": "pages/drop/drop",
  38. "text": "跌幅"
  39. },
  40. {
  41. "selectedIconPath": "images/tabBar014.png",
  42. "iconPath": "images/tabBar004.png",
  43. "pagePath": "pages/me/me",
  44. "text": "我的"
  45. }
  46. ]
  47. },
  48. "style": "v2",
  49. "sitemapLocation": "sitemap.json"
  50. }