pages.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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/use",
  61. "style": {
  62. "navigationBarTitleText": "价值实现",
  63. "navigationStyle":"custom"
  64. }
  65. },
  66. {
  67. "path": "pages/usercenter/usercenter",
  68. "style": {
  69. "navigationBarTitleText": "",
  70. "navigationStyle":"custom"
  71. }
  72. },
  73. {
  74. "path": "pages/usercenter/certificateList/certificateList",
  75. "style": {
  76. "navigationBarTitleText": "我的证书"
  77. }
  78. },
  79. {
  80. "path": "pages/usercenter/certificateList/certificate/certificate",
  81. "style": {
  82. "navigationBarTitleText": "证书"
  83. }
  84. },
  85. {
  86. "path": "pages/usercenter/orderList/orderList",
  87. "style": {
  88. "navigationBarTitleText": "我的订单"
  89. }
  90. },
  91. {
  92. "path": "pages/usercenter/orderList/orderdetails/orderdetails",
  93. "style": {
  94. "navigationBarTitleText": "订单详情"
  95. }
  96. },
  97. {
  98. "path": "pages/usercenter/subscribe/subscribe",
  99. "style": {
  100. "navigationBarTitleText": "我的认购"
  101. }
  102. },
  103. {
  104. "path": "pages/usercenter/question/question",
  105. "style": {
  106. "navigationBarTitleText": "常见问题"
  107. }
  108. }
  109. ,{
  110. "path": "pages/offlineBuy/offlineBuy",
  111. "style": {
  112. "navigationBarTitleText": "线下认购"
  113. }
  114. }
  115. ],
  116. "tabBar": {
  117. "color": "#999",
  118. "selectedColor": "#26D18B",
  119. "borderStyle": "white",
  120. "backgroundColor": "#ffffff",
  121. "list": [{
  122. "pagePath": "pages/index/index",
  123. "iconPath": "/static/img/icon_home.png",
  124. "selectedIconPath":"static/img/icon_home_active.png",
  125. "text": "首页"
  126. },{
  127. "pagePath": "pages/use/use",
  128. "iconPath": "static/img/icon_use.png",
  129. "selectedIconPath":"static/img/icon_use_active.png",
  130. "text": "价值实现"
  131. },{
  132. "pagePath": "pages/usercenter/usercenter",
  133. "iconPath": "static/img/icon_usercenter.png",
  134. "selectedIconPath":"static/img/icon_usercenter_active.png",
  135. "text": "我的信息"
  136. }]
  137. },
  138. "globalStyle": {
  139. "navigationBarTextStyle": "black",
  140. "navigationBarTitleText": "碳汇",
  141. "navigationBarBackgroundColor": "#fff",
  142. "backgroundColor": "#F5F5F5"
  143. }
  144. }