pages.json 2.7 KB

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