pages.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/show/show",
  5. "style": {
  6. "navigationBarTitleText": "迎新首页",
  7. "enablePullDownRefresh": false
  8. }
  9. }, {
  10. "path": "pages/confirm/confirm",
  11. "style": {
  12. "navigationBarTitleText": "确认信息",
  13. "enablePullDownRefresh": false
  14. }
  15. }, {
  16. "path": "pages/index/index",
  17. "style": {
  18. "navigationBarTitleText": "人脸采集",
  19. "enablePullDownRefresh": true
  20. }
  21. }, {
  22. "path": "pages/test/test",
  23. "style": {
  24. "navigationBarTitleText": "",
  25. "enablePullDownRefresh": false
  26. }
  27. }
  28. ],
  29. "condition": {
  30. "current": 1,
  31. "list": [{
  32. "name":"显示页面",
  33. "path": "pages/show/show"
  34. }, {
  35. "name":"确认页面",
  36. "path": "pages/confirm/confirm"
  37. }, {
  38. "name":"首页",
  39. "path": "pages/index/index"
  40. }, {
  41. "name":"测试",
  42. "path": "pages/test/test"
  43. }]
  44. },
  45. "globalStyle": {
  46. "navigationBarTextStyle": "black",
  47. "navigationBarTitleText": "uni-app",
  48. "navigationBarBackgroundColor": "#F8F8F8",
  49. "backgroundColor": "#F8F8F8",
  50. "usingComponents": {
  51. "login": "plugin://myPlugin/login"
  52. }
  53. }
  54. }