pages.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "校园综合服务平台"
  7. }
  8. },
  9. {
  10. "path" : "pages/orders/orders",
  11. "style" :
  12. {
  13. "navigationBarTitleText" : "订 单",
  14. "enablePullDownRefresh" : false
  15. }
  16. },
  17. {
  18. "path" : "pages/me/me",
  19. "style" :
  20. {
  21. "navigationBarTitleText" : "我 的",
  22. "enablePullDownRefresh" : false
  23. }
  24. },
  25. {
  26. "path" : "pages/login/login",
  27. "style" :
  28. {
  29. "navigationBarTitleText" : "登 录"
  30. }
  31. },
  32. {
  33. "path" : "pages/register/register",
  34. "style" :
  35. {
  36. "navigationBarTitleText" : "注 册"
  37. }
  38. },
  39. {
  40. "path" : "pages/preOrder/preOrder",
  41. "style" :
  42. {
  43. "navigationBarTitleText" : "下单"
  44. }
  45. },
  46. {
  47. "path" : "pages/address/address",
  48. "style" :
  49. {
  50. "navigationBarTitleText" : "我的地址"
  51. }
  52. },
  53. {
  54. "path" : "pages/detail/detail",
  55. "style" :
  56. {
  57. "navigationBarTitleText" : "订单详情"
  58. }
  59. },
  60. {
  61. "path" : "pages/introduce/introduce",
  62. "style" :
  63. {
  64. "navigationBarTitleText" : "平台介绍"
  65. }
  66. },
  67. {
  68. "path" : "pages/agreement/agreement",
  69. "style" :
  70. {
  71. "navigationBarTitleText" : "用户协议"
  72. }
  73. },
  74. {
  75. "path" : "pages/person/person",
  76. "style" :
  77. {
  78. "navigationBarTitleText" : "个人介绍"
  79. }
  80. },
  81. {
  82. "path" : "pages/certification/certification",
  83. "style" :
  84. {
  85. "navigationBarTitleText" : "骑手认证"
  86. }
  87. },
  88. {
  89. "path" : "pages/acceptOrders/acceptOrders",
  90. "style" :
  91. {
  92. "navigationBarTitleText" : "骑手订单"
  93. }
  94. },
  95. {
  96. "path" : "pages/records/records",
  97. "style" :
  98. {
  99. "navigationBarTitleText" : "收支明细"
  100. }
  101. },
  102. {
  103. "path" : "pages/wallet/wallet",
  104. "style" :
  105. {
  106. "navigationBarTitleText" : "钱 包"
  107. }
  108. },
  109. {
  110. "path" : "pages/charge/charge",
  111. "style" :
  112. {
  113. "navigationBarTitleText" : "充 值"
  114. }
  115. },
  116. {
  117. "path" : "pages/comment/comment",
  118. "style" :
  119. {
  120. "navigationBarTitleText" : "订单评价"
  121. }
  122. },
  123. {
  124. "path" : "pages/myComment/myComment",
  125. "style" :
  126. {
  127. "navigationBarTitleText" : "评价中心"
  128. }
  129. }
  130. ],
  131. "globalStyle": {
  132. // 导航栏标题颜色及状态栏前景颜色,仅支持 black/white
  133. "navigationBarTextStyle": "white",
  134. // 导航栏标题文字内容
  135. "navigationBarTitleText": "校园综合服务平台",
  136. // 导航栏背景颜色(同状态栏背景色)
  137. "navigationBarBackgroundColor": "#006eff",
  138. // 下拉显示出来的窗口的背景色
  139. "backgroundColor": "#F8F8F8"
  140. },
  141. //底部导航菜单
  142. "tabBar": {
  143. "backgroundColor": "#fff",
  144. "selectedColor": "#006eff",
  145. "color": "#666",
  146. "list": [
  147. {
  148. "iconPath": "/static/icons/home.png",
  149. "selectedIconPath": "static/icons/home-active.png",
  150. "text": "首页",
  151. "pagePath": "pages/index/index"
  152. },
  153. {
  154. "iconPath": "/static/icons/orders.png",
  155. "selectedIconPath": "static/icons/orders-active.png",
  156. "text": "订单",
  157. "pagePath": "pages/orders/orders"
  158. },
  159. {
  160. "iconPath": "/static/icons/me.png",
  161. "selectedIconPath": "static/icons/me-active.png",
  162. "text": "我的",
  163. "pagePath": "pages/me/me"
  164. }
  165. ]
  166. },
  167. "uniIdRouter": {}
  168. }