app.json 1.7 KB

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