app.json 1.5 KB

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