pages.json 729 B

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