app.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/logs/logs",
  5. "pages/pool/pool",
  6. "pages/strong/strong",
  7. "pages/rank/rank",
  8. "pages/mine/mine"
  9. ],
  10. "window": {
  11. "navigationBarBackgroundColor": "#ffffff",
  12. "navigationBarTextStyle": "black",
  13. "navigationBarTitleText": "量化选股大师"
  14. },
  15. "tabBar": {
  16. "color": "#999999",
  17. "selectedColor": "#5d55e8",
  18. "backgroundColor": "#ffffff",
  19. "list": [
  20. {
  21. "pagePath": "pages/index/index",
  22. "text": "打分查询",
  23. "iconPath": "images/tab_search.png",
  24. "selectedIconPath": "images/tab_search_active.png"
  25. },
  26. {
  27. "pagePath": "pages/pool/pool",
  28. "text": "超短池",
  29. "iconPath": "images/tab_short.png",
  30. "selectedIconPath": "images/tab_short_active.png"
  31. },
  32. {
  33. "pagePath": "pages/strong/strong",
  34. "text": "强势池",
  35. "iconPath": "images/tab_strong.png",
  36. "selectedIconPath": "images/tab_strong_active.png"
  37. },
  38. {
  39. "pagePath": "pages/rank/rank",
  40. "text": "模拟排名",
  41. "iconPath": "images/tab_rank.png",
  42. "selectedIconPath": "images/tab_rank_active.png"
  43. },
  44. {
  45. "pagePath": "pages/mine/mine",
  46. "text": "个人中心",
  47. "iconPath": "images/tab_mine.png",
  48. "selectedIconPath": "images/tab_mine_active.png"
  49. }
  50. ]
  51. },
  52. "style": "v2",
  53. "componentFramework": "glass-easel",
  54. "sitemapLocation": "sitemap.json",
  55. "lazyCodeLoading": "requiredComponents"
  56. }