pages.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. "navigationBarTitleText": "",
  29. "enablePullDownRefresh": false
  30. }
  31. },
  32. {
  33. "path": "pages/order/index",
  34. "style": {
  35. "navigationBarTitleText": "订单"
  36. }
  37. },
  38. {
  39. "path": "pages/my/index",
  40. "style": {
  41. "navigationBarTitleText": "我的"
  42. }
  43. }
  44. ],
  45. "subPackages": [{
  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. "tabBar": {
  62. "color": "#282828",
  63. "selectedColor": "#B22338",
  64. "borderStyle": "white",
  65. "backgroundColor": "#ffffff",
  66. "list": [{
  67. "pagePath": "pages/index/index"
  68. },
  69. {
  70. "pagePath": "pages/orderMeal/index"
  71. },
  72. {
  73. "pagePath": "pages/qrCode/index"
  74. },
  75. {
  76. "pagePath": "pages/order/index"
  77. },
  78. {
  79. "pagePath": "pages/my/index"
  80. }
  81. ]
  82. },
  83. "globalStyle": {
  84. "navigationBarTextStyle": "black",
  85. "navigationBarTitleText": "加载中",
  86. "navigationBarBackgroundColor": "#fff",
  87. "backgroundColor": "#F8F8F8",
  88. "titleNView": false
  89. },
  90. "uniIdRouter": {}
  91. }