pages.json 3.0 KB

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