app.json 1.6 KB

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