pages.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. {
  2. "pages": [{
  3. "path": "pages/index/index",
  4. "style": {
  5. "navigationBarTitleText": "首页",
  6. "navigationBarBackgroundColor":"#DEEDFB"
  7. }
  8. }
  9. ,{
  10. "path" : "pages/history/history",
  11. "style" :
  12. {
  13. "navigationBarTitleText": "历史",
  14. "navigationBarBackgroundColor": "#DEEDFB",
  15. "enablePullDownRefresh": false
  16. }
  17. }
  18. ,{
  19. "path" : "pages/myCenter/myCenter",
  20. "style" :
  21. {
  22. "navigationBarTitleText": "我的",
  23. "navigationBarBackgroundColor":"#3D90F4",
  24. "enablePullDownRefresh": false,
  25. "navigationStyle": "custom"
  26. }
  27. },
  28. {
  29. "path" : "pages/history/detail/detail",
  30. "style" :
  31. {
  32. "navigationBarTitleText": "运动详情",
  33. "navigationBarBackgroundColor": "#3D90F4",
  34. "enablePullDownRefresh": false
  35. }
  36. },
  37. {
  38. "path": "pages/login/index",
  39. "style": {
  40. "navigationBarTitleText": "登录"
  41. }
  42. },
  43. {
  44. "path" : "pages/myCenter/personalData/personalData",
  45. "style" :
  46. {
  47. "navigationBarTitleText": "个人资料",
  48. "enablePullDownRefresh": false
  49. }
  50. }
  51. ,{
  52. "path" : "pages/myCenter/updatePassword/updatePassword",
  53. "style" :
  54. {
  55. "navigationBarTitleText": "修改密码",
  56. "enablePullDownRefresh": false
  57. }
  58. }
  59. ],
  60. "globalStyle": {
  61. "navigationBarTextStyle": "black",
  62. "navigationBarTitleText": "uni-app",
  63. "navigationBarBackgroundColor": "#F8F8F8",
  64. "backgroundColor": "#F8F8F8",
  65. "app-plus": {
  66. "background": "#efeff4"
  67. }
  68. },
  69. "tabBar": {
  70. "color": "#7A7E83",
  71. "selectedColor": "#1296db",
  72. "borderStyle": "black",
  73. "backgroundColor": "#ffffff",
  74. "list": [{
  75. "pagePath": "pages/index/index",
  76. "iconPath": "static/tabbar/index.png",
  77. "selectedIconPath": "static/tabbar/indexEd.png",
  78. "text": "首页"
  79. }, {
  80. "pagePath": "pages/history/history",
  81. "iconPath": "static/tabbar/history.png",
  82. "selectedIconPath": "static/tabbar/historyEd.png",
  83. "text": "历史"
  84. }, {
  85. "pagePath": "pages/myCenter/myCenter",
  86. "iconPath": "static/tabbar/myCenter.png",
  87. "selectedIconPath": "static/tabbar/myCenterEd.png",
  88. "text": "我的"
  89. }]
  90. },
  91. "condition": { //模式配置,仅开发期间生效
  92. "current": 0, //当前激活的模式(list 的索引项)
  93. "list": [{
  94. "name": "test", //模式名称
  95. "path": "pages/index/index" //启动页面,必选
  96. }]
  97. } ,
  98. "lazyCodeLoading": "requiredComponents "
  99. }