pages.json 706 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "pages": [{
  3. "path": "pages/user/user",
  4. "style": {
  5. "navigationStyle": "custom",
  6. "navigationBarTitleText": "个人中心"
  7. }
  8. },
  9. {
  10. "path": "pages/user/dkdetail",
  11. "style": {
  12. "navigationBarTitleText": "打卡记录"
  13. }
  14. }
  15. ],
  16. "globalStyle": {
  17. "navigationBarTextStyle": "black",
  18. "navigationBarTitleText": "uni-app",
  19. "navigationBarBackgroundColor": "#FFFFFF",
  20. "backgroundColor": "#f8f8f8"
  21. },
  22. "condition": { //模式配置,仅开发期间生效
  23. "current": 0, //当前激活的模式(list 的索引项)
  24. "list": [{
  25. "name": "", //模式名称
  26. "path": "", //启动页面,必选
  27. "query": "" //启动参数,在页面的onLoad函数里面得到
  28. }]
  29. }
  30. }