pages.json 3.1 KB

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