pages.json 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "极速生活圈",
  7. "navigationStyle": "custom",
  8. "disableScroll": true
  9. }
  10. },
  11. {
  12. "path": "pages/userset/index",
  13. "style": {
  14. "navigationBarTitleText": "我的设置"
  15. }
  16. },
  17. {
  18. "path": "pages/collectionList/index",
  19. "style": {
  20. "navigationBarTitleText": "我的收藏"
  21. }
  22. },
  23. {
  24. "path": "pages/browserecord/index",
  25. "style": {
  26. "navigationBarTitleText": "浏览足迹"
  27. }
  28. },
  29. {
  30. "path": "pages/question/sequential",
  31. "style": {
  32. "navigationBarTitleText": "顺序测试",
  33. "disableScroll": true
  34. }
  35. },
  36. {
  37. "path": "pages/question/random",
  38. "style": {
  39. "navigationBarTitleText": "随机测试",
  40. "disableScroll": true
  41. }
  42. },
  43. {
  44. "path": "pages/question/wrongTitle",
  45. "style": {
  46. "navigationBarTitleText": "错题收藏",
  47. "disableScroll": true
  48. }
  49. },
  50. {
  51. "path": "pages/question/mockExam",
  52. "style": {
  53. "navigationBarTitleText": "模拟考试",
  54. "disableScroll": true
  55. }
  56. },
  57. {
  58. "path": "pages/webview/webview",
  59. "style": {
  60. "navigationBarTitleText": "",
  61. "enablePullDownRefresh": false
  62. }
  63. },
  64. {
  65. "path": "pages/dianying/dianying",
  66. "style": {
  67. "navigationBarTitleText": "",
  68. "enablePullDownRefresh": false
  69. }
  70. },
  71. {
  72. "path": "pages/cinema/cinemalist",
  73. "style": {
  74. "navigationBarTitleText": "影院列表",
  75. "enablePullDownRefresh": false
  76. }
  77. },
  78. {
  79. "path": "pages/cinema/schedulelist",
  80. "style": {
  81. "navigationBarTitleText": "",
  82. "enablePullDownRefresh": false,
  83. "backgroundColor": "#ffffff"
  84. }
  85. }, {
  86. "path": "pages/cinema/selectseat",
  87. "style": {
  88. "navigationBarTitleText": "",
  89. "enablePullDownRefresh": false
  90. }
  91. }, {
  92. "path": "pages/cinema/placeorder",
  93. "style": {
  94. "navigationBarTitleText": "付款",
  95. "enablePullDownRefresh": false
  96. }
  97. }, {
  98. "path": "pages/user/order",
  99. "style": {
  100. "navigationBarTitleText": "全部订单",
  101. "enablePullDownRefresh": false
  102. }
  103. }, {
  104. "path": "pages/cinema/orderdes",
  105. "style": {
  106. "navigationBarTitleText": "订单详情",
  107. "enablePullDownRefresh": false
  108. }
  109. }, {
  110. "path": "pages/cinema/citylist",
  111. "style": {
  112. "navigationBarTitleText": "选择城市",
  113. "enablePullDownRefresh": false
  114. }
  115. }
  116. ],
  117. "globalStyle": {
  118. "navigationBarTextStyle": "black",
  119. "navigationBarTitleText": "",
  120. "navigationBarBackgroundColor": "#F8F8F8",
  121. "backgroundColor": "#F8F8F8",
  122. "usingComponents": {
  123. "van-tabbar": "/wxcomponents/vant/tabbar/index",
  124. "van-tabbar-item": "/wxcomponents/vant/tabbar-item/index",
  125. "van-search": "/wxcomponents/vant/search/index",
  126. "van-icon": "/wxcomponents/vant/icon/index",
  127. "van-toast": "/wxcomponents/vant/toast/index",
  128. "van-row": "/wxcomponents/vant/row/index",
  129. "van-col": "/wxcomponents/vant/col/index",
  130. "van-transition": "/wxcomponents/vant/transition/index",
  131. "van-image": "/wxcomponents/vant/image/index",
  132. "van-checkbox": "/wxcomponents/vant/checkbox/index",
  133. "van-checkbox-group": "/wxcomponents/vant/checkbox-group/index",
  134. "van-radio": "/wxcomponents/vant/radio/index",
  135. "van-radio-group": "/wxcomponents/vant/radio-group/index",
  136. "van-cell": "/wxcomponents/vant/cell/index",
  137. "van-cell-group": "/wxcomponents/vant/cell-group/index",
  138. "van-switch": "/wxcomponents/vant/switch/index",
  139. "van-popup": "/wxcomponents/vant/popup/index",
  140. "van-skeleton": "/wxcomponents/vant/skeleton/index",
  141. "van-field": "/wxcomponents/vant/field/index",
  142. "van-area": "/wxcomponents/vant/area/index",
  143. "van-button": "/wxcomponents/vant/button/index",
  144. "van-divider": "/wxcomponents/vant/divider/index",
  145. "van-count-down": "/wxcomponents/vant/count-down/index",
  146. "van-dialog": "/wxcomponents/vant/dialog/index",
  147. "van-tab": "/wxcomponents/vant/tab/index",
  148. "van-tabs": "/wxcomponents/vant/tabs/index",
  149. "van-share-sheet": "/wxcomponents/vant/share-sheet/index",
  150. "van-index-bar": "/wxcomponents/vant/index-bar/index",
  151. "van-index-anchor": "/wxcomponents/vant/index-anchor/index"
  152. }
  153. },
  154. "condition": { //模式配置,仅开发期间生效
  155. "current": 0, //当前激活的模式(list 的索引项)
  156. "list": [{
  157. "name": "", //模式名称
  158. "path": "", //启动页面,必选
  159. "query": "" //启动参数,在页面的onLoad函数里面得到
  160. }]
  161. }
  162. }