pages.json 1.2 KB

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