pages.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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": "myPages",
  47. "pages": [
  48. {
  49. "path": "recharge/index",
  50. "style": {
  51. "navigationBarTitleText": "储值服务",
  52. "enablePullDownRefresh": false
  53. }
  54. },
  55. {
  56. "path": "coupon/index",
  57. "style": {
  58. "navigationBarTitleText": "优惠券",
  59. "enablePullDownRefresh": false
  60. }
  61. }
  62. ]
  63. },
  64. {
  65. "root": "loginPages",
  66. "pages": [
  67. {
  68. "path": "bindAccount/index",
  69. "style": {
  70. "navigationBarTitleText": "绑定手机号",
  71. "enablePullDownRefresh": false
  72. }
  73. }
  74. ]
  75. }
  76. ],
  77. "tabBar": {
  78. "color": "#282828",
  79. "selectedColor": "#B22338",
  80. "borderStyle": "white",
  81. "backgroundColor": "#ffffff",
  82. "list": [
  83. {
  84. "pagePath": "pages/index/index"
  85. },
  86. {
  87. "pagePath": "pages/orderMeal/index"
  88. },
  89. {
  90. "pagePath": "pages/qrCode/index"
  91. },
  92. {
  93. "pagePath": "pages/order/index"
  94. },
  95. {
  96. "pagePath": "pages/my/index"
  97. }
  98. ]
  99. },
  100. "globalStyle": {
  101. "navigationBarTextStyle": "black",
  102. "navigationBarTitleText": "加载中",
  103. "navigationBarBackgroundColor": "#FFE05C",
  104. "backgroundColor": "#FFE05C",
  105. "titleNView": false
  106. },
  107. "uniIdRouter": {}
  108. }