pages.json 704 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/login"
  5. },
  6. {
  7. "path": "pages/index/index"
  8. }
  9. ],
  10. "globalStyle": {
  11. "navigationBarTitleText": "追踪方法学",
  12. "navigationStyle": "custom",
  13. "style": {
  14. "app-plus": {
  15. "background": "#2D43B3"
  16. }
  17. },
  18. "rpxCalcMaxDeviceWidth": 9999
  19. },
  20. "condition": { //模式配置,仅开发期间生效
  21. "current": 0, //当前激活的模式(list 的索引项)
  22. "list": [{
  23. "name": "开发模式", //模式名称
  24. "path": "pages/index/index", //启动页面,必选
  25. "query": "" //启动参数,在页面的onLoad函数里面得到
  26. }]
  27. }
  28. }