pages.json 518 B

12345678910111213141516171819202122
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "",
  7. "enablePullDownRefresh": false,
  8. "navigationStyle": "custom",
  9. "app-plus": {
  10. "titleNView": false
  11. }
  12. }
  13. }
  14. ],
  15. "globalStyle": {
  16. "navigationBarTextStyle": "black",
  17. "navigationBarTitleText": "",
  18. "navigationBarBackgroundColor": "#F8F8F8",
  19. "backgroundColor": "#F8F8F8"
  20. },
  21. "uniIdRouter": {}
  22. }