pages.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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/successPage/index",
  11. "style": {
  12. "navigationBarTitleText": "个人信息"
  13. }
  14. },
  15. {
  16. "path": "pages/auth/index",
  17. "style": {
  18. "navigationBarTitleText": "授权页面"
  19. }
  20. },
  21. {
  22. "path": "pages/index/customPage/index",
  23. "style": {
  24. "navigationBarTitleText": "个人信息"
  25. }
  26. },
  27. {
  28. "path": "pages/index/dealerPage/index",
  29. "style": {
  30. "navigationBarTitleText": "个人信息"
  31. }
  32. },
  33. {
  34. "path": "pages/index/failPage/index",
  35. "style": {
  36. "navigationBarTitleText": "个人信息"
  37. }
  38. }
  39. ],
  40. "globalStyle": {
  41. "navigationBarTextStyle": "black",
  42. "navigationBarTitleText": "分销助手",
  43. "navigationBarBackgroundColor": "#F8F8F8",
  44. "backgroundColor": "#F8F8F8"
  45. },
  46. "tabBar": {
  47. "color": "#d8d8d8",
  48. "selectedColor": "#4a4a4a",
  49. "borderStyle": "white",
  50. "backgroundColor": "#FFFFFF",
  51. "list": [
  52. {
  53. "pagePath": "pages/index/index",
  54. "iconPath": "/static/tabbar/house-pic-nor.png",
  55. "selectedIconPath": "/static/tabbar/house-pic-active.png",
  56. "text": "首页"
  57. },
  58. {
  59. "pagePath": "pages/auth/index",
  60. "iconPath": "/static/tabbar/use-pic-nor.png",
  61. "selectedIconPath": "/static/tabbar/use-pic-active.png",
  62. "text": "个人中心"
  63. }
  64. ]
  65. }
  66. }