pages.json 572 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationStyle": "custom"
  7. }
  8. },
  9. {
  10. "path": "pages/mobile/index",
  11. "style": {
  12. "navigationStyle": "custom"
  13. }
  14. },
  15. {
  16. "path": "pages/pc/index",
  17. "style": {
  18. "navigationStyle": "custom"
  19. }
  20. }
  21. ],
  22. "globalStyle": {
  23. "navigationBarTextStyle": "black",
  24. "navigationBarTitleText": "门店学院",
  25. "navigationBarBackgroundColor": "#F8F8F8",
  26. "backgroundColor": "#F8F8F8"
  27. }
  28. }