pages.json 964 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. // "condition": { //模式配置,仅开发期间生效
  3. // "current": 0, //当前激活的模式(list 的索引项)
  4. // "list": [{
  5. // "name": "test", //模式名称
  6. // "path": "pages/componentsB/dropdown/dropdown", //启动页面,必选
  7. // "query": "" //启动参数,在页面的onLoad函数里面得到
  8. // }]
  9. // },
  10. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  11. {
  12. "path": "pages/index/index",
  13. "style": {
  14. "navigationBarTitleText": "首页"
  15. }
  16. },
  17. {
  18. "path": "pages/login/index",
  19. "style": {
  20. "navigationBarTitleText": "登录"
  21. }
  22. },
  23. {
  24. "path": "pages/mine/index",
  25. "style": {
  26. "navigationBarTitleText": "我的"
  27. }
  28. }
  29. ],
  30. "globalStyle": {
  31. "navigationBarTextStyle": "black",
  32. "navigationBarTitleText": "uView2.0",
  33. "navigationBarBackgroundColor": "#FFFFFF",
  34. "backgroundColor": "#FFFFFF"
  35. }
  36. }