pages.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/usercenter/orderList/orderList",
  5. "style": {
  6. "navigationBarTitleText": "我的订单"
  7. }
  8. },
  9. {
  10. "path": "pages/index/init",
  11. "navigationStyle":"custom"
  12. ,"style": {
  13. "navigationBarBackgroundColor":"#fff",
  14. "navigationBarTitleText": "入口页"//入口页
  15. // ,"titleNView": false
  16. }
  17. },
  18. {
  19. "path": "pages/index/guide",
  20. "navigationStyle":"custom"
  21. ,"style": {
  22. "navigationBarBackgroundColor":"#fff",
  23. "navigationBarTitleText": "引导页"
  24. }
  25. },
  26. {
  27. "path": "pages/login/loginType",
  28. "style": {
  29. "navigationBarTitleText": ""
  30. }
  31. },
  32. {
  33. "path": "pages/login/companyLogin",
  34. "style": {
  35. "navigationBarTitleText": "企业用户登录"
  36. }
  37. },
  38. {
  39. "path": "pages/index/index",
  40. "style": {
  41. "navigationBarTitleText": ""
  42. }
  43. },
  44. {
  45. "path": "pages/use/use",
  46. "style": {
  47. "navigationBarTitleText": "价值实现"
  48. }
  49. },
  50. {
  51. "path": "pages/usercenter/usercenter",
  52. "style": {
  53. "navigationBarTitleText": ""
  54. }
  55. },
  56. {
  57. "path": "pages/usercenter/certificateList/certificateList",
  58. "style": {
  59. "navigationBarTitleText": "我的证书"
  60. }
  61. },
  62. // {
  63. // "path": "pages/usercenter/orderList/orderList",
  64. // "style": {
  65. // "navigationBarTitleText": "我的订单"
  66. // }
  67. // },
  68. {
  69. "path": "pages/usercenter/orderList/orderdetails/orderdetails",
  70. "style": {
  71. "navigationBarTitleText": "订单详情"
  72. }
  73. },
  74. {
  75. "path": "pages/usercenter/subscribe/subscribe",
  76. "style": {
  77. "navigationBarTitleText": "我的认购"
  78. }
  79. }
  80. ],
  81. "tabBar": {
  82. "color": "#999",
  83. "selectedColor": "#26D18B",
  84. "borderStyle": "white",
  85. "height":"134rpx",
  86. "backgroundColor": "#ffffff",
  87. "list": [{
  88. "pagePath": "pages/index/index",
  89. "iconPath": "/static/img/icon_home.png",
  90. "selectedIconPath":"static/img/icon_home_active.png",
  91. "text": "首页"
  92. },{
  93. "pagePath": "pages/use/use",
  94. "iconPath": "static/img/icon_use.png",
  95. "selectedIconPath":"static/img/icon_use_active.png",
  96. "text": "价值实现"
  97. },{
  98. "pagePath": "pages/usercenter/usercenter",
  99. "iconPath": "static/img/icon_usercenter.png",
  100. "selectedIconPath":"static/img/icon_usercenter_active.png",
  101. "text": "我的信息"
  102. }]
  103. },
  104. "globalStyle": {
  105. "navigationBarTextStyle": "black",
  106. "navigationBarTitleText": "碳汇",
  107. "navigationBarBackgroundColor": "#fff",
  108. "backgroundColor": "#F5F5F5"
  109. }
  110. }