pages.json 3.0 KB

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