app.json 1.8 KB

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