pages.json 2.9 KB

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