pages.json 945 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/course/learning",
  5. "style": {
  6. "navigationBarTitleText": "",
  7. "navigationStyle": "custom",
  8. "scrollIndicator": "none",
  9. "bounce": "none",
  10. "titleNView": false
  11. }
  12. },
  13. {
  14. "path": "pages/course/reward",
  15. "style": {
  16. "navigationBarTitleText": "",
  17. "navigationStyle": "custom",
  18. "scrollIndicator": "none",
  19. "bounce": "none",
  20. "titleNView": false
  21. }
  22. },
  23. {
  24. "path": "pages/auth/login",
  25. "style": {
  26. "navigationBarTitleText": "微信授权",
  27. "navigationStyle": "custom",
  28. "scrollIndicator": "none",
  29. "bounce": "none",
  30. "titleNView": false
  31. }
  32. }
  33. ],
  34. "globalStyle": {
  35. "navigationBarTextStyle": "black",
  36. "navigationBarTitleText": "",
  37. "navigationBarBackgroundColor": "#F8F8F8",
  38. "backgroundColor": "#F8F8F8"
  39. },
  40. "uniIdRouter": {}
  41. }