pages.json 1.7 KB

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