pages.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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/detailPage/index",
  17. "style": {
  18. "navigationBarTitleText": "产品详情"
  19. }
  20. },
  21. {
  22. "path": "pages/selfCenter/index",
  23. "style": {
  24. "navigationBarTitleText": "个人中心"
  25. }
  26. },
  27. {
  28. "path": "pages/selfCenter/recommendTeam/index",
  29. "style": {
  30. "navigationBarTitleText": "分销团队"
  31. }
  32. },
  33. {
  34. "path": "pages/selfCenter/cashoutPage/index",
  35. "style": {
  36. "navigationBarTitleText": "提现记录"
  37. }
  38. },
  39. {
  40. "path": "pages/selfCenter/cashoutPage/applyPage/index",
  41. "style": {
  42. "navigationBarTitleText": "申请提现"
  43. }
  44. },
  45. {
  46. "path": "pages/selfCenter/awardPage/index",
  47. "style": {
  48. "navigationBarTitleText": "奖励记录"
  49. }
  50. },
  51. {
  52. "path": "pages/selfCenter/helpPage/index",
  53. "style": {
  54. "navigationBarTitleText": "帮助中心"
  55. }
  56. },
  57. {
  58. "path": "pages/selfCenter/helpPage/helpDetail/index",
  59. "style": {
  60. "navigationBarTitleText": "查看详情"
  61. }
  62. }
  63. ],
  64. "globalStyle": {
  65. "navigationBarTextStyle": "black",
  66. "navigationBarTitleText": "分销助手",
  67. "navigationBarBackgroundColor": "#F8F8F8",
  68. "backgroundColor": "#F8F8F8"
  69. },
  70. "tabBar": {
  71. "color": "#d8d8d8",
  72. "selectedColor": "#4a4a4a",
  73. "borderStyle": "white",
  74. "backgroundColor": "#FFFFFF",
  75. "list": [{
  76. "pagePath": "pages/index/index",
  77. "iconPath": "/static/tabbar/house-pic-nor.png",
  78. "selectedIconPath": "/static/tabbar/house-pic-nor.png",
  79. "text": "首页"
  80. },
  81. {
  82. "pagePath": "pages/selfCenter/index",
  83. "iconPath": "/static/tabbar/use-pic-nor.png",
  84. "selectedIconPath": "/static/tabbar/use-pic-active.png",
  85. "text": "个人中心"
  86. }
  87. ]
  88. }
  89. }