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