pages.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/logIn/logIn",
  5. "style": {
  6. "navigationBarTitleText": "登录",
  7. "enablePullDownRefresh": false
  8. }
  9. },
  10. {
  11. "path": "pages/index/index",
  12. "style": {
  13. "navigationBarTitleText": "首页",
  14. "navigationBarBackgroundColor": "#FFFFFF"
  15. }
  16. },
  17. {
  18. "path": "pages/team/myTeam",
  19. "style": {
  20. "navigationBarTitleText": "我的团队",
  21. "navigationBarBackgroundColor": "#FFFFFF",
  22. "enablePullDownRefresh": true
  23. }
  24. },
  25. {
  26. "path": "pages/team/manageStore",
  27. "style": {
  28. "navigationBarTitleText": "管理门店",
  29. "navigationBarBackgroundColor": "#FFFFFF",
  30. "enablePullDownRefresh": true
  31. }
  32. },
  33. {
  34. "path": "pages/teamStore/teamStore",
  35. "style": {
  36. "navigationBarTitleText": "团队门店",
  37. "navigationBarBackgroundColor": "#FFFFFF",
  38. "enablePullDownRefresh": true
  39. }
  40. }
  41. , {
  42. "path": "pages/accountSet/accountSet",
  43. "style": {
  44. "navigationBarTitleText": "账户设置",
  45. "navigationBarBackgroundColor": "#FFFFFF",
  46. "enablePullDownRefresh": false
  47. }
  48. },
  49. {
  50. "path": "pages/changePassWord/changePassWord",
  51. "style": {
  52. "navigationBarTitleText": "修改密码",
  53. "navigationBarBackgroundColor": "#FFFFFF",
  54. "enablePullDownRefresh": false
  55. }
  56. },
  57. {
  58. "path": "pages/upcoming/upcoming",
  59. "style": {
  60. "navigationBarTitleText": "待办事项",
  61. "navigationBarBackgroundColor": "#FFFFFF",
  62. "enablePullDownRefresh": true
  63. }
  64. }
  65. ],
  66. "globalStyle": {
  67. "navigationBarTextStyle": "black",
  68. "navigationBarTitleText": "uni-app",
  69. "navigationBarBackgroundColor": "#F8F8F8",
  70. "backgroundColor": "#F8F8F8"
  71. }
  72. }