app.json 1.5 KB

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