app.json 1.7 KB

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