pages.json 2.8 KB

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