pages.json 3.2 KB

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