pages.json 1.9 KB

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