app.json 1.4 KB

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