pages.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. },
  76. {
  77. "root": "loginPages",
  78. "pages": [
  79. {
  80. "path": "bindAccount/index",
  81. "style": {
  82. "navigationBarTitleText": "绑定手机号",
  83. "enablePullDownRefresh": false
  84. }
  85. }
  86. ]
  87. }
  88. ],
  89. "tabBar": {
  90. "color": "#282828",
  91. "selectedColor": "#B22338",
  92. "borderStyle": "white",
  93. "backgroundColor": "#ffffff",
  94. "list": [
  95. {
  96. "pagePath": "pages/index/index"
  97. },
  98. {
  99. "pagePath": "pages/orderMeal/index"
  100. },
  101. {
  102. "pagePath": "pages/qrCode/index"
  103. },
  104. {
  105. "pagePath": "pages/order/index"
  106. },
  107. {
  108. "pagePath": "pages/my/index"
  109. }
  110. ]
  111. },
  112. "globalStyle": {
  113. "navigationBarTextStyle": "black",
  114. "navigationBarTitleText": "加载中",
  115. "navigationBarBackgroundColor": "#FFE05C",
  116. "backgroundColor": "#FFE05C",
  117. "titleNView": false
  118. },
  119. "uniIdRouter": {}
  120. }