pages.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/login/login",
  5. "style" :
  6. {
  7. "navigationBarTitleText" : "登录"
  8. }
  9. },
  10. {
  11. "path": "pages/index/index",
  12. "style": {
  13. "navigationBarTitleText": "首页"
  14. }
  15. },
  16. {
  17. "path" : "pages/classify/classify",
  18. "style" :
  19. {
  20. "navigationBarTitleText" : "首页",
  21. "enablePullDownRefresh" : false
  22. }
  23. },
  24. {
  25. "path" : "pages/user/user",
  26. "style" :
  27. {
  28. "navigationBarTitleText" : "我的",
  29. "enablePullDownRefresh" : false
  30. }
  31. },
  32. {
  33. "path" : "pages/user/myInfo",
  34. "style" :
  35. {
  36. "navigationBarTitleText" : "个人中心",
  37. "enablePullDownRefresh" : false
  38. }
  39. },
  40. {
  41. "path" : "pages/order/orderPaid/orderPaid",
  42. "style" :
  43. {
  44. "navigationBarTitleText" : "订单详情"
  45. }
  46. },
  47. {
  48. "path" : "pages/order/submitOrder/submitOrder",
  49. "style" :
  50. {
  51. "navigationBarTitleText" : "提交订单",
  52. "enablePullDownRefresh" : false
  53. }
  54. },
  55. {
  56. "path" : "pages/login/qrCode",
  57. "style" :
  58. {
  59. "navigationBarTitleText" : "登录"
  60. }
  61. },
  62. {
  63. "path" : "pages/diningList/diningList",
  64. "style" :
  65. {
  66. "navigationBarTitleText" : "餐车列表"
  67. }
  68. },
  69. {
  70. "path" : "pages/diningCar/diningCar",
  71. "style" :
  72. {
  73. "navigationBarTitleText" : "餐车信息",
  74. "enablePullDownRefresh" : false
  75. }
  76. },
  77. {
  78. "path" : "pages/bindPhone/bindPhone",
  79. "style" :
  80. {
  81. "navigationBarTitleText" : "登录",
  82. "enablePullDownRefresh" : false
  83. }
  84. },
  85. {
  86. "path" : "pages/order/myOrder/myOrder",
  87. "style" :
  88. {
  89. "navigationBarTitleText" : "我的订单",
  90. "enablePullDownRefresh" : false
  91. }
  92. },
  93. {
  94. "path" : "pages/order/paySuccess/paySuccess",
  95. "style" :
  96. {
  97. "navigationBarTitleText" : "支付成功",
  98. "enablePullDownRefresh" : false
  99. }
  100. },
  101. {
  102. "path" : "pages/order/orderDetail/orderDetail",
  103. "style" :
  104. {
  105. "navigationBarTitleText" : "订单详情",
  106. "enablePullDownRefresh" : false
  107. }
  108. },
  109. {
  110. "path" : "pages/goodDetail/goodDetail",
  111. "style" :
  112. {
  113. "navigationBarTitleText" : "商品详情",
  114. "enablePullDownRefresh" : false
  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. }