pages.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. "^cu-(.*)":"@/colorui/components/cu-$1.vue"
  6. }
  7. },
  8. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  9. {
  10. "path": "pages/index/index",
  11. "style": {
  12. }
  13. },
  14. {
  15. "path": "pages/login/index",
  16. "style": {
  17. }
  18. },
  19. {
  20. "path": "pages/commodity/index",
  21. "style": {
  22. }
  23. },
  24. {
  25. "path": "pages/shoppingCart/index",
  26. "style": {
  27. }
  28. },
  29. {
  30. "path": "pages/detail/index"
  31. },
  32. {
  33. "path": "pages/order/index"
  34. }
  35. ],
  36. "tabBar": {
  37. "custom":true,
  38. "list": [{
  39. "pagePath": "pages/index/index",
  40. "text": "首页"
  41. },
  42. {
  43. "pagePath": "pages/commodity/index",
  44. "text": "商品"
  45. },
  46. {
  47. "pagePath": "pages/shoppingCart/index",
  48. "text": "购物车"
  49. },
  50. {
  51. "pagePath": "pages/login/index",
  52. "text": "我的"
  53. }
  54. ]
  55. },
  56. "subPackages": [
  57. {
  58. "root": "loginPages",
  59. "pages": [
  60. {
  61. "path":"addressList/index"
  62. },
  63. {
  64. "path": "addaddress/index"
  65. },
  66. {
  67. "path": "evaluate/index"
  68. },
  69. {
  70. "path":"addEvalute/index"
  71. }
  72. ]
  73. },
  74. {
  75. "root": "detailPages",
  76. "pages": [
  77. {
  78. "path":"evaluate/index"
  79. }
  80. ]
  81. }
  82. ],
  83. "preloadRule":{
  84. "pages/index/index": {
  85. "network": "all",
  86. "packages": ["__APP__"]
  87. },
  88. "pages/login/index":{
  89. "network": "all","packages": [
  90. "loginPages"
  91. ]
  92. },
  93. "pages/detail/index":{
  94. "network": "all",
  95. "packages": ["detailPages"]
  96. }
  97. },
  98. "globalStyle": {
  99. "navigationBarTextStyle": "white",
  100. "navigationBarTitleText": "uni-app",
  101. "navigationStyle": "custom",
  102. "navigationBarBackgroundColor": "#F8F8F8",
  103. "backgroundColor": "#F8F8F8"
  104. }
  105. }