pages.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页"
  7. }
  8. },
  9. {
  10. "path": "pages/auth/index",
  11. "style": {
  12. "navigationBarTitleText": "授权页面"
  13. }
  14. },
  15. {
  16. "path": "pages/index/postShare/index",
  17. "style": {
  18. "navigationBarTitleText": "产品详情"
  19. }
  20. },
  21. {
  22. "path": "pages/index/detailPage/index",
  23. "style": {
  24. "navigationBarTitleText": "产品详情"
  25. }
  26. },
  27. {
  28. "path": "pages/index/ruleList/index",
  29. "style": {
  30. "navigationBarTitleText": "分享规则"
  31. }
  32. },
  33. {
  34. "path": "pages/selfCenter/index",
  35. "style": {
  36. "navigationBarTitleText": "个人中心"
  37. }
  38. },
  39. {
  40. "path": "pages/selfCenter/recommendTeam/index",
  41. "style": {
  42. "navigationBarTitleText": "分销团队"
  43. }
  44. },
  45. {
  46. "path": "pages/selfCenter/cashoutPage/index",
  47. "style": {
  48. "navigationBarTitleText": "提现记录"
  49. }
  50. },
  51. {
  52. "path": "pages/selfCenter/cashoutPage/applyPage/index",
  53. "style": {
  54. "navigationBarTitleText": "申请提现"
  55. }
  56. },
  57. {
  58. "path": "pages/selfCenter/awardPage/index",
  59. "style": {
  60. "navigationBarTitleText": "奖励记录"
  61. }
  62. },
  63. {
  64. "path": "pages/selfCenter/helpPage/index",
  65. "style": {
  66. "navigationBarTitleText": "帮助中心"
  67. }
  68. },
  69. {
  70. "path": "pages/selfCenter/helpPage/helpDetail/index",
  71. "style": {
  72. "navigationBarTitleText": "查看详情"
  73. }
  74. }
  75. ],
  76. "globalStyle": {
  77. "navigationBarTextStyle": "black",
  78. "navigationBarTitleText": "分销助手",
  79. "navigationBarBackgroundColor": "#F8F8F8",
  80. "backgroundColor": "#F8F8F8"
  81. },
  82. "tabBar": {
  83. "color": "#d8d8d8",
  84. "selectedColor": "#4a4a4a",
  85. "borderStyle": "white",
  86. "backgroundColor": "#FFFFFF",
  87. "list": [{
  88. "pagePath": "pages/index/index",
  89. "iconPath": "/static/tabbar/house-pic-nor.png",
  90. "selectedIconPath": "/static/tabbar/house-pic-active.png",
  91. "text": "首页"
  92. },
  93. {
  94. "pagePath": "pages/selfCenter/index",
  95. "iconPath": "/static/tabbar/use-pic-nor.png",
  96. "selectedIconPath": "/static/tabbar/use-pic-active.png",
  97. "text": "个人中心"
  98. }
  99. ]
  100. }
  101. }