pages.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/init",
  5. "navigationStyle":"custom"
  6. ,"style": {
  7. "navigationBarBackgroundColor":"#fff",
  8. "navigationBarTitleText": "入口页"//入口页
  9. // ,"titleNView": false
  10. }
  11. },
  12. {
  13. "path": "pages/index/guide",
  14. "navigationStyle":"custom"
  15. ,"style": {
  16. "navigationBarBackgroundColor":"#fff",
  17. "navigationBarTitleText": "引导页",
  18. "navigationStyle":"custom"
  19. }
  20. },
  21. {
  22. "path": "pages/login/loginType",
  23. "style": {
  24. "navigationBarTitleText": "",
  25. "navigationStyle":"custom"
  26. }
  27. },
  28. {
  29. "path": "pages/login/companyLogin",
  30. "style": {
  31. "navigationBarTitleText": "企业用户登录"
  32. }
  33. },
  34. {
  35. "path": "pages/index/index",
  36. "style": {
  37. "navigationBarTitleText": "",
  38. "navigationStyle":"custom"
  39. }
  40. },
  41. {
  42. "path": "pages/product/product",
  43. "style": {
  44. "navigationBarTitleText": ""
  45. }
  46. },
  47. {
  48. "path": "pages/product/productList/productList",
  49. "style": {
  50. "navigationBarTitleText": ""
  51. }
  52. },
  53. {
  54. "path": "pages/confirmOrder/confirmOrder",
  55. "style": {
  56. "navigationBarTitleText": ""
  57. }
  58. },
  59. {
  60. "path": "pages/use/useRouter",
  61. "style": {
  62. "navigationBarTitleText": "",
  63. "navigationStyle":"custom"
  64. }
  65. },
  66. {
  67. "path": "pages/mall/mall",
  68. "style": {
  69. "navigationBarTitleText": "普惠商城",
  70. "navigationStyle":"custom"
  71. }
  72. },
  73. {
  74. "path": "pages/use/use",
  75. "style": {
  76. "navigationBarTitleText": "价值实现",
  77. "navigationStyle":"custom"
  78. }
  79. },
  80. {
  81. "path": "pages/usercenter/usercenter",
  82. "style": {
  83. "navigationBarTitleText": "",
  84. "navigationStyle":"custom"
  85. }
  86. },
  87. {
  88. "path": "pages/usercenter/certificateList/certificateList",
  89. "style": {
  90. "navigationBarTitleText": "我的证书"
  91. }
  92. },
  93. {
  94. "path": "pages/usercenter/certificateList/certificate/certificate",
  95. "style": {
  96. "navigationBarTitleText": "证书"
  97. }
  98. },
  99. {
  100. "path": "pages/usercenter/orderList/orderList",
  101. "style": {
  102. "navigationBarTitleText": "我的订单"
  103. }
  104. },
  105. {
  106. "path": "pages/usercenter/orderList/orderdetails/orderdetails",
  107. "style": {
  108. "navigationBarTitleText": "订单详情"
  109. }
  110. },
  111. {
  112. "path": "pages/usercenter/subscribe/subscribe",
  113. "style": {
  114. "navigationBarTitleText": "我的认购"
  115. }
  116. },
  117. {
  118. "path": "pages/usercenter/question/question",
  119. "style": {
  120. "navigationBarTitleText": "常见问题"
  121. }
  122. }
  123. ,{
  124. "path": "pages/offlineBuy/offlineBuy",
  125. "style": {
  126. "navigationBarTitleText": "线下认购"
  127. }
  128. }
  129. ],
  130. "tabBar": {
  131. "color": "#999",
  132. "selectedColor": "#26D18B",
  133. "borderStyle": "white",
  134. "backgroundColor": "#ffffff",
  135. "list": [{
  136. "pagePath": "pages/index/index",
  137. "iconPath": "/static/img/icon_home.png",
  138. "selectedIconPath":"static/img/icon_home_active.png",
  139. "text": "首页"
  140. },{
  141. "pagePath": "pages/use/useRouter",
  142. "iconPath": "static/img/icon_use.png",
  143. "selectedIconPath":"static/img/icon_use_active.png",
  144. "text": "价值实现"
  145. },{
  146. "pagePath": "pages/usercenter/usercenter",
  147. "iconPath": "static/img/icon_usercenter.png",
  148. "selectedIconPath":"static/img/icon_usercenter_active.png",
  149. "text": "我的信息"
  150. }]
  151. },
  152. "globalStyle": {
  153. "navigationBarTextStyle": "black",
  154. "navigationBarTitleText": "碳汇",
  155. "navigationBarBackgroundColor": "#fff",
  156. "backgroundColor": "#F5F5F5"
  157. }
  158. }