pages.json 822 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/Login/clientIndex",
  5. "style": {
  6. "navigationStyle": "custom"
  7. }
  8. }
  9. ],
  10. "tabBar": {
  11. "custom": true,
  12. "list": []
  13. },
  14. "globalStyle": {
  15. "navigationBarTextStyle": "black",
  16. "navigationBarTitleText": "",
  17. "navigationBarBackgroundColor": "#F8F8F8",
  18. "backgroundColor": "#F8F8F8",
  19. //禁止滑动返回
  20. "app-plus": {
  21. "popGesture": "none"
  22. }
  23. },
  24. "uniIdRouter": {},
  25. "condition": { //模式配置,仅开发期间生效
  26. "current": 0, //当前激活的模式(list 的索引项)
  27. "list": [{
  28. "name": "login", //模式名称
  29. "path": "pages/Login/clientIndex", //启动页面,必选
  30. "query": "" //启动参数,在页面的onLoad函数里面得到
  31. }]
  32. }
  33. }