pages.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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/auth/index",
  29. "style": {
  30. "navigationBarTitleText": "授权页面"
  31. }
  32. }
  33. ],
  34. "globalStyle": {
  35. "navigationBarTextStyle": "black",
  36. "navigationBarTitleText": "分销助手",
  37. "navigationBarBackgroundColor": "#F8F8F8",
  38. "backgroundColor": "#F8F8F8"
  39. },
  40. "tabBar": {
  41. "color": "#d8d8d8",
  42. "selectedColor": "#4a4a4a",
  43. "borderStyle": "white",
  44. "backgroundColor": "#FFFFFF",
  45. "list": [{
  46. "pagePath": "pages/index/index",
  47. "iconPath": "/static/tabbar/house-pic-nor.png",
  48. "selectedIconPath": "/static/tabbar/house-pic-nor.png",
  49. "text": "首页"
  50. },
  51. {
  52. "pagePath": "pages/selfCenter/index",
  53. "iconPath": "/static/tabbar/use-pic-nor.png",
  54. "selectedIconPath": "/static/tabbar/use-pic-active.png",
  55. "text": "个人中心"
  56. }
  57. ]
  58. }
  59. }