pages.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/login/login",
  8. "style": {
  9. "navigationBarTitleText": "",
  10. "enablePullDownRefresh": false
  11. }
  12. },
  13. {
  14. "path": "pages/index/index",
  15. "style": {
  16. "navigationBarTitleText": "首页"
  17. }
  18. },
  19. {
  20. "path": "pages/orderMeal/index",
  21. "style": {
  22. "navigationBarTitleText": "点单"
  23. }
  24. },
  25. {
  26. "path": "pages/qrCode/index",
  27. "style": {
  28. "navigationStyle": "custom"
  29. }
  30. },
  31. {
  32. "path": "pages/order/index",
  33. "style": {
  34. "navigationBarTitleText": "订单"
  35. }
  36. },
  37. {
  38. "path": "pages/my/index",
  39. "style": {
  40. "navigationBarTitleText": "我的"
  41. }
  42. }
  43. ],
  44. "subPackages": [
  45. {
  46. "root": "orderPages",
  47. "pages": [
  48. {
  49. "path": "orderDetail/index",
  50. "style": {
  51. "navigationBarTitleText": "订单详情",
  52. "enablePullDownRefresh": false
  53. }
  54. },
  55. {
  56. "path": "goodsDetail/index",
  57. "style": {
  58. "navigationBarTitleText": "商品详情",
  59. "enablePullDownRefresh": false
  60. }
  61. }
  62. ]
  63. },
  64. {
  65. "root": "myPages",
  66. "pages": [
  67. {
  68. "path": "recharge/index",
  69. "style": {
  70. "navigationBarTitleText": "储值服务",
  71. "enablePullDownRefresh": false
  72. }
  73. },
  74. {
  75. "path": "coupon/index",
  76. "style": {
  77. "navigationBarTitleText": "优惠券",
  78. "enablePullDownRefresh": false
  79. }
  80. }
  81. ]
  82. },
  83. {
  84. "root": "loginPages",
  85. "pages": [
  86. {
  87. "path": "bindAccount/index",
  88. "style": {
  89. "navigationBarTitleText": "绑定手机号",
  90. "enablePullDownRefresh": false
  91. }
  92. }
  93. ]
  94. }
  95. ],
  96. "tabBar": {
  97. "color": "#282828",
  98. "selectedColor": "#B22338",
  99. "borderStyle": "white",
  100. "backgroundColor": "#ffffff",
  101. "list": [
  102. {
  103. "pagePath": "pages/index/index"
  104. },
  105. {
  106. "pagePath": "pages/orderMeal/index"
  107. },
  108. {
  109. "pagePath": "pages/qrCode/index"
  110. },
  111. {
  112. "pagePath": "pages/order/index"
  113. },
  114. {
  115. "pagePath": "pages/my/index"
  116. }
  117. ]
  118. },
  119. "globalStyle": {
  120. "navigationBarTextStyle": "black",
  121. "navigationBarTitleText": "加载中",
  122. "navigationBarBackgroundColor": "#FFE05C",
  123. "backgroundColor": "#FFE05C",
  124. "titleNView": false
  125. },
  126. "uniIdRouter": {}
  127. }