pages.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/launch/index",
  5. "style": {
  6. "navigationStyle":"custom"
  7. }
  8. },
  9. {
  10. "path": "pages/login/index",
  11. "style": {
  12. "navigationStyle":"custom"
  13. }
  14. },
  15. {
  16. "path": "pages/index/index",
  17. "style": {
  18. "navigationStyle":"custom"
  19. }
  20. },
  21. {
  22. "path": "pages/login/env_page",
  23. "style": {
  24. "navigationBarTitleText": "开发者工具"
  25. }
  26. },
  27. {
  28. "path": "pages/mine/setting",
  29. "style": {
  30. "navigationBarTitleText": "设置"
  31. }
  32. },
  33. {
  34. "path": "pages/test/upload",
  35. "style": {
  36. "navigationBarTitleText": "上传"
  37. }
  38. },
  39. {
  40. "path" : "pages/test/livetest",
  41. "style" :
  42. {
  43. "navigationBarTitleText": "直播测试",
  44. "enablePullDownRefresh": false
  45. }
  46. },
  47. {
  48. "path" : "pages/lesson/lesson_detail",
  49. "style" :
  50. {
  51. "navigationBarTitleText": "课堂详情"
  52. }
  53. }
  54. ],
  55. "globalStyle": {
  56. "navigationBarTextStyle": "black",
  57. "navigationBarTitleText": "uni-app",
  58. "navigationBarBackgroundColor": "#F8F8F8",
  59. "backgroundColor": "#F8F8F8",
  60. "enablePullDownRefresh": false,
  61. "app-plus": {
  62. "bounce": "none",
  63. "safearea": {
  64. "background": "#CCCCCC",
  65. "bottom": {
  66. "offset": "auto"
  67. }
  68. }
  69. }
  70. }
  71. }