pages.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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/collectionList/index",
  12. "style": {
  13. "navigationBarTitleText": "我的收藏"
  14. }
  15. },
  16. {
  17. "path": "pages/browserecord/index",
  18. "style": {
  19. "navigationBarTitleText": "浏览足迹"
  20. }
  21. },
  22. {
  23. "path": "pages/question/sequential",
  24. "style": {
  25. "navigationBarTitleText": "顺序测试",
  26. "disableScroll": true
  27. }
  28. },
  29. {
  30. "path": "pages/question/random",
  31. "style": {
  32. "navigationBarTitleText": "随机测试",
  33. "disableScroll": true
  34. }
  35. },
  36. {
  37. "path": "pages/question/wrongTitle",
  38. "style": {
  39. "navigationBarTitleText": "错题收藏",
  40. "disableScroll": true
  41. }
  42. },
  43. {
  44. "path": "pages/question/mockExam",
  45. "style": {
  46. "navigationBarTitleText": "模拟考试",
  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. "van-tab": "/wxcomponents/vant/tab/index",
  82. "van-tabs": "/wxcomponents/vant/tabs/index",
  83. "van-share-sheet": "/wxcomponents/vant/share-sheet/index"
  84. }
  85. }
  86. }