pages.json 3.3 KB

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