pages.json 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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/userset/index",
  12. "style": {
  13. "navigationBarTitleText": "我的设置"
  14. }
  15. },
  16. {
  17. "path": "pages/collectionList/index",
  18. "style": {
  19. "navigationBarTitleText": "我的收藏"
  20. }
  21. },
  22. {
  23. "path": "pages/browserecord/index",
  24. "style": {
  25. "navigationBarTitleText": "浏览足迹"
  26. }
  27. },
  28. {
  29. "path": "pages/question/sequential",
  30. "style": {
  31. "navigationBarTitleText": "顺序测试",
  32. "disableScroll": true
  33. }
  34. },
  35. {
  36. "path": "pages/question/random",
  37. "style": {
  38. "navigationBarTitleText": "随机测试",
  39. "disableScroll": true
  40. }
  41. },
  42. {
  43. "path": "pages/question/wrongTitle",
  44. "style": {
  45. "navigationBarTitleText": "错题收藏",
  46. "disableScroll": true
  47. }
  48. },
  49. {
  50. "path": "pages/question/mockExam",
  51. "style": {
  52. "navigationBarTitleText": "模拟考试",
  53. "disableScroll": true
  54. }
  55. }
  56. ],
  57. "globalStyle": {
  58. "navigationBarTextStyle": "black",
  59. "navigationBarTitleText": "",
  60. "navigationBarBackgroundColor": "#F8F8F8",
  61. "backgroundColor": "#F8F8F8",
  62. "usingComponents": {
  63. "van-tabbar": "/wxcomponents/vant/tabbar/index",
  64. "van-tabbar-item": "/wxcomponents/vant/tabbar-item/index",
  65. "van-search": "/wxcomponents/vant/search/index",
  66. "van-icon": "/wxcomponents/vant/icon/index",
  67. "van-toast": "/wxcomponents/vant/toast/index",
  68. "van-row": "/wxcomponents/vant/row/index",
  69. "van-col": "/wxcomponents/vant/col/index",
  70. "van-transition": "/wxcomponents/vant/transition/index",
  71. "van-image": "/wxcomponents/vant/image/index",
  72. "van-checkbox": "/wxcomponents/vant/checkbox/index",
  73. "van-checkbox-group": "/wxcomponents/vant/checkbox-group/index",
  74. "van-radio": "/wxcomponents/vant/radio/index",
  75. "van-radio-group": "/wxcomponents/vant/radio-group/index",
  76. "van-cell": "/wxcomponents/vant/cell/index",
  77. "van-cell-group": "/wxcomponents/vant/cell-group/index",
  78. "van-switch": "/wxcomponents/vant/switch/index",
  79. "van-popup": "/wxcomponents/vant/popup/index",
  80. "van-skeleton": "/wxcomponents/vant/skeleton/index",
  81. "van-field": "/wxcomponents/vant/field/index",
  82. "van-area": "/wxcomponents/vant/area/index",
  83. "van-button": "/wxcomponents/vant/button/index",
  84. "van-divider": "/wxcomponents/vant/divider/index",
  85. "van-count-down": "/wxcomponents/vant/count-down/index",
  86. "van-dialog": "/wxcomponents/vant/dialog/index",
  87. "van-tab": "/wxcomponents/vant/tab/index",
  88. "van-tabs": "/wxcomponents/vant/tabs/index",
  89. "van-share-sheet": "/wxcomponents/vant/share-sheet/index"
  90. }
  91. }
  92. }