app.json 1.3 KB

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