app.json 1.3 KB

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