pages.json 562 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "enableScroll": false
  7. }
  8. },
  9. {
  10. "path": "pages/index/feedback",
  11. "style": {
  12. "enableScroll": false
  13. }
  14. }
  15. ],
  16. "globalStyle": {
  17. "navigationStyle": "custom",
  18. "navigationBarTitleText": "商小川",
  19. "navigationBarTextStyle": "black"
  20. },
  21. "condition": {
  22. "current": 0,
  23. "list": [
  24. {
  25. "name": "feedback",
  26. "path": "pages/index/feedback",
  27. "query": ""
  28. }
  29. ]
  30. }
  31. }