pages.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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/selfCenter/index",
  11. "style": {
  12. "navigationBarTitleText": "个人中心"
  13. }
  14. },
  15. {
  16. "path": "pages/auth/index",
  17. "style": {
  18. "navigationBarTitleText": "授权页面"
  19. }
  20. }
  21. ],
  22. "globalStyle": {
  23. "navigationBarTextStyle": "black",
  24. "navigationBarTitleText": "分销助手",
  25. "navigationBarBackgroundColor": "#F8F8F8",
  26. "backgroundColor": "#F8F8F8"
  27. },
  28. "tabBar": {
  29. "color": "#d8d8d8",
  30. "selectedColor": "#4a4a4a",
  31. "borderStyle": "white",
  32. "backgroundColor": "#FFFFFF",
  33. "list": [{
  34. "pagePath": "pages/index/index",
  35. "iconPath": "/static/tabbar/house-pic-nor.png",
  36. "selectedIconPath": "/static/tabbar/house-pic-nor.png",
  37. "text": "首页"
  38. },
  39. {
  40. "pagePath": "pages/selfCenter/index",
  41. "iconPath": "/static/tabbar/use-pic-nor.png",
  42. "selectedIconPath": "/static/tabbar/use-pic-active.png",
  43. "text": "个人中心"
  44. }
  45. ]
  46. }
  47. }