app.json 1.7 KB

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