pages.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/classify/classify",
  5. "style" :
  6. {
  7. "navigationBarTitleText" : "首页",
  8. "enablePullDownRefresh" : false
  9. }
  10. },
  11. {
  12. "path" : "pages/login/login",
  13. "style" :
  14. {
  15. "navigationBarTitleText" : "登录"
  16. }
  17. },
  18. {
  19. "path" : "pages/user/user",
  20. "style" :
  21. {
  22. "navigationBarTitleText" : "我的",
  23. "enablePullDownRefresh" : false
  24. }
  25. },
  26. {
  27. "path" : "pages/user/myInfo",
  28. "style" :
  29. {
  30. "navigationBarTitleText" : "个人中心",
  31. "enablePullDownRefresh" : false
  32. }
  33. },
  34. {
  35. "path" : "pages/order/orderPaid/orderPaid",
  36. "style" :
  37. {
  38. "navigationBarTitleText" : "订单详情"
  39. }
  40. },
  41. {
  42. "path" : "pages/order/submitOrder/submitOrder",
  43. "style" :
  44. {
  45. "navigationBarTitleText" : "提交订单",
  46. "enablePullDownRefresh" : false
  47. }
  48. },
  49. {
  50. "path" : "pages/login/qrCode",
  51. "style" :
  52. {
  53. "navigationBarTitleText" : "登录"
  54. }
  55. },
  56. {
  57. "path" : "pages/diningList/diningList",
  58. "style" :
  59. {
  60. "navigationBarTitleText" : "餐车列表"
  61. }
  62. },
  63. {
  64. "path" : "pages/diningCar/diningCar",
  65. "style" :
  66. {
  67. "navigationBarTitleText" : "餐车信息",
  68. "enablePullDownRefresh" : false
  69. }
  70. },
  71. {
  72. "path" : "pages/bindPhone/bindPhone",
  73. "style" :
  74. {
  75. "navigationBarTitleText" : "登录",
  76. "enablePullDownRefresh" : false
  77. }
  78. },
  79. {
  80. "path" : "pages/order/myOrder/myOrder",
  81. "style" :
  82. {
  83. "navigationBarTitleText" : "我的订单",
  84. "enablePullDownRefresh" : false
  85. }
  86. },
  87. {
  88. "path" : "pages/order/paySuccess/paySuccess",
  89. "style" :
  90. {
  91. "navigationBarTitleText" : "支付成功",
  92. "enablePullDownRefresh" : false
  93. }
  94. },
  95. {
  96. "path" : "pages/order/orderDetail/orderDetail",
  97. "style" :
  98. {
  99. "navigationBarTitleText" : "订单详情",
  100. "enablePullDownRefresh" : false
  101. }
  102. },
  103. {
  104. "path" : "pages/goodDetail/goodDetail",
  105. "style" :
  106. {
  107. "navigationBarTitleText" : "商品详情",
  108. "enablePullDownRefresh" : false
  109. }
  110. },
  111. {
  112. "path": "pages/index/index",
  113. "style": {
  114. "navigationBarTitleText": "首页"
  115. }
  116. },
  117. {
  118. "path": "pages/index/home",
  119. "style": {
  120. "navigationBarTitleText": "我的"
  121. }
  122. },
  123. {
  124. "path" : "pages/order/orderDetails/orderDetails",
  125. "style" :
  126. {
  127. "navigationBarTitleText" : ""
  128. }
  129. }
  130. ],
  131. "easycom": {
  132. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  133. },
  134. "tabBar": {
  135. "custom": true,
  136. "color": "#C0C4CC",
  137. "selectedColor": "#000000",
  138. "borderStyle": "black",
  139. "backgroundColor": "#ffffff",
  140. "list": [{
  141. "pagePath": "pages/index/index",
  142. "iconPath": "static/ic_hone.png",
  143. "selectedIconPath": "static/ic_hone.png",
  144. "text": "首页"
  145. },
  146. // {
  147. // "pagePath": "pages/classify/classify",
  148. // "iconPath": "static/ic_hone.png",
  149. // "selectedIconPath": "static/ic_hone.png",
  150. // "text": "分类"
  151. // },
  152. {
  153. "pagePath": "pages/index/home",
  154. "iconPath": "static/ic_hone.png",
  155. "selectedIconPath": "static/ic_hone.png",
  156. "text": "我的"
  157. }
  158. ]
  159. },
  160. "globalStyle": {
  161. "navigationBarTextStyle": "black",
  162. "navigationBarTitleText": "销售系统",
  163. "navigationBarBackgroundColor": "#FFFFFF",
  164. "backgroundColor": "#EEEEEE"
  165. },
  166. "uniIdRouter": {}
  167. }