pages.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. "root": "orderPages",
  46. "pages": [{
  47. "path": "orderDetail/index",
  48. "style": {
  49. "navigationBarTitleText": "订单详情",
  50. "enablePullDownRefresh": false
  51. }
  52. }, {
  53. "path": "goodsDetail/index",
  54. "style": {
  55. "navigationBarTitleText": "商品详情",
  56. "enablePullDownRefresh": false
  57. }
  58. }]
  59. }],
  60. "tabBar": {
  61. "color": "#282828",
  62. "selectedColor": "#B22338",
  63. "borderStyle": "white",
  64. "backgroundColor": "#ffffff",
  65. "list": [{
  66. "pagePath": "pages/index/index"
  67. },
  68. {
  69. "pagePath": "pages/orderMeal/index"
  70. },
  71. {
  72. "pagePath": "pages/qrCode/index"
  73. },
  74. {
  75. "pagePath": "pages/order/index"
  76. },
  77. {
  78. "pagePath": "pages/my/index"
  79. }
  80. ]
  81. },
  82. "globalStyle": {
  83. "navigationBarTextStyle": "black",
  84. "navigationBarTitleText": "加载中",
  85. "navigationBarBackgroundColor": "#fff",
  86. "backgroundColor": "#F8F8F8",
  87. "titleNView": false
  88. },
  89. "uniIdRouter": {}
  90. }