pages.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "中振集市",
  7. "navigationStyle": "custom"
  8. }
  9. },
  10. {
  11. "path": "pages/home/index",
  12. "style": {
  13. "disableScroll": true
  14. }
  15. },
  16. {
  17. "path": "pages/question/sequential",
  18. "style": {
  19. "navigationBarTitleText": "顺序测试",
  20. "disableScroll": true
  21. }
  22. },
  23. {
  24. "path": "pages/question/random",
  25. "style": {
  26. "navigationBarTitleText": "随机测试",
  27. "disableScroll": true
  28. }
  29. },
  30. {
  31. "path": "pages/question/wrongTitle",
  32. "style": {
  33. "navigationBarTitleText": "错题收藏",
  34. "disableScroll": true
  35. }
  36. },
  37. {
  38. "path": "pages/question/mockExam",
  39. "style": {
  40. "navigationBarTitleText": "模拟考试",
  41. "disableScroll": true
  42. }
  43. },
  44. {
  45. "path": "pages/idcard/index",
  46. "style": {
  47. "disableScroll": true
  48. }
  49. }
  50. ],
  51. "globalStyle": {
  52. "navigationBarTextStyle": "black",
  53. "navigationBarTitleText": "",
  54. "navigationBarBackgroundColor": "#F8F8F8",
  55. "backgroundColor": "#F8F8F8",
  56. "usingComponents": {
  57. "van-tabbar": "/wxcomponents/vant/tabbar/index",
  58. "van-tabbar-item": "/wxcomponents/vant/tabbar-item/index",
  59. "van-search": "/wxcomponents/vant/search/index",
  60. "van-icon": "/wxcomponents/vant/icon/index",
  61. "van-toast": "/wxcomponents/vant/toast/index",
  62. "van-row": "/wxcomponents/vant/row/index",
  63. "van-col": "/wxcomponents/vant/col/index",
  64. "van-transition": "/wxcomponents/vant/transition/index",
  65. "van-image": "/wxcomponents/vant/image/index",
  66. "van-checkbox": "/wxcomponents/vant/checkbox/index",
  67. "van-checkbox-group": "/wxcomponents/vant/checkbox-group/index",
  68. "van-radio": "/wxcomponents/vant/radio/index",
  69. "van-radio-group": "/wxcomponents/vant/radio-group/index",
  70. "van-cell": "/wxcomponents/vant/cell/index",
  71. "van-cell-group": "/wxcomponents/vant/cell-group/index",
  72. "van-switch": "/wxcomponents/vant/switch/index",
  73. "van-popup": "/wxcomponents/vant/popup/index",
  74. "van-skeleton": "/wxcomponents/vant/skeleton/index",
  75. "van-field": "/wxcomponents/vant/field/index",
  76. "van-area": "/wxcomponents/vant/area/index",
  77. "van-button": "/wxcomponents/vant/button/index",
  78. "van-divider": "/wxcomponents/vant/divider/index",
  79. "van-count-down": "/wxcomponents/vant/count-down/index",
  80. "van-dialog": "/wxcomponents/vant/dialog/index"
  81. }
  82. }
  83. }