pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationStyle": "custom",
  7. "navigationBarTextStyle": "white",
  8. "enablePullDownRefresh": true
  9. }
  10. },
  11. {
  12. "path": "pages/orders/index",//订单
  13. "style": {
  14. "navigationStyle": "custom",
  15. "navigationBarTextStyle": "white"
  16. }
  17. },
  18. {
  19. "path": "pages/my/index",//团队
  20. "style": {
  21. "navigationStyle": "custom",
  22. "navigationBarTextStyle": "white",
  23. "enablePullDownRefresh": true
  24. }
  25. },
  26. {
  27. "path": "pages/login/register",//注册
  28. "style": {
  29. "navigationStyle": "custom",
  30. "navigationBarTextStyle": "white"
  31. }
  32. },
  33. {
  34. "path": "pages/leakage/index",//撿漏區
  35. "style": {
  36. "navigationStyle": "custom",
  37. "navigationBarTextStyle": "white",
  38. "enablePullDownRefresh": true
  39. }
  40. },
  41. {
  42. "path": "pages/my/rule",//参与规则
  43. "style": {
  44. "navigationStyle": "custom",
  45. "navigationBarTextStyle": "white",
  46. "enablePullDownRefresh": true
  47. }
  48. },
  49. {
  50. "path": "pages/my/tutorial",//新手教程
  51. "style": {
  52. "navigationStyle": "custom",
  53. "navigationBarTextStyle": "white",
  54. "enablePullDownRefresh": true
  55. }
  56. },
  57. {
  58. "path": "pages/my/tutorialdel",//新手教详情
  59. "style": {
  60. "navigationStyle": "custom",
  61. "navigationBarTextStyle": "white",
  62. "enablePullDownRefresh": true
  63. }
  64. },
  65. {
  66. "path": "pages/my/fhlist",//分红列表
  67. "style": {
  68. "navigationStyle": "custom",
  69. "navigationBarTextStyle": "white",
  70. "enablePullDownRefresh": true
  71. }
  72. }
  73. ],
  74. "globalStyle": {
  75. "navigationBarTextStyle": "black",
  76. "navigationBarTitleText": "VGST",
  77. "navigationBarBackgroundColor": "#F8F8F8",
  78. "backgroundColor": "#F8F8F8"
  79. },//撿漏區
  80. "tabBar": {
  81. "color": "#767E9E",
  82. "selectedColor": "#14C670",
  83. "borderStyle": "white",
  84. "backgroundColor": "#ffffff",
  85. "iconWidth":"32px",
  86. "spacing":"0",
  87. "fontSize":"10px",
  88. "height":"60px",
  89. "list": [{
  90. "pagePath": "pages/index/index",
  91. "iconPath": "static/tabble/Home.png",
  92. "selectedIconPath": "static/tabble/Homehover.png",
  93. "text": "首頁"
  94. }, {
  95. "pagePath": "pages/orders/index",
  96. "iconPath": "static/tabble/Bill.png",
  97. "selectedIconPath": "static/tabble/Billhover.png",
  98. "text": "訂單"
  99. },
  100. {
  101. "pagePath": "pages/leakage/index",
  102. "iconPath": "static/tabble/Price.png",
  103. "selectedIconPath": "static/tabble/Pricehover.png",
  104. "text": "撿漏"
  105. },{
  106. "pagePath": "pages/my/index",
  107. "iconPath": "static/tabble/Mine.png",
  108. "selectedIconPath": "static/tabble/Minehover.png",
  109. "text": "我的"
  110. }]
  111. }
  112. }