pages.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue",
  4. "^gf-(.*)": "@/components/kj-$1/kj-$1.vue"
  5. },
  6. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  7. {
  8. "path": "pages/index/index",
  9. "style": {
  10. "navigationBarTitleText": "uni-app"
  11. }
  12. },
  13. {
  14. "path": "pages/mine/mine",
  15. "style": {
  16. "navigationBarTitleText": "",
  17. "enablePullDownRefresh": false
  18. }
  19. },
  20. {
  21. "path": "pages/express/express",
  22. "style": {
  23. "navigationBarTitleText": "",
  24. "enablePullDownRefresh": false
  25. }
  26. },
  27. {
  28. "path": "pages/shopping/shopping",
  29. "style": {
  30. "navigationBarTitleText": "",
  31. "enablePullDownRefresh": false
  32. }
  33. },
  34. {
  35. "path": "pages/cart/cart",
  36. "style": {
  37. "navigationBarTitleText": "",
  38. "enablePullDownRefresh": false
  39. }
  40. }
  41. ],
  42. "subPackages": [{
  43. "root": "pageA",
  44. "pages": [{
  45. "path": "index",
  46. "style": {
  47. "navigationBarTitleText": "",
  48. "enablePullDownRefresh": false
  49. }
  50. }
  51. ]
  52. },
  53. {
  54. "root": "pageB",
  55. "pages": [{
  56. "path": "index",
  57. "style": {
  58. "navigationBarTitleText": "",
  59. "enablePullDownRefresh": false
  60. }
  61. }
  62. ]
  63. },
  64. {
  65. "root": "pageC",
  66. "pages": [{
  67. "path": "index",
  68. "style": {
  69. "navigationBarTitleText": "",
  70. "enablePullDownRefresh": false
  71. }
  72. }
  73. ]
  74. },
  75. {
  76. "root": "pageD",
  77. "pages": [{
  78. "path": "index",
  79. "style": {
  80. "navigationBarTitleText": "",
  81. "enablePullDownRefresh": false
  82. }
  83. }
  84. ]
  85. }
  86. ],
  87. "globalStyle": {
  88. "navigationBarTextStyle": "black",
  89. "navigationBarTitleText": "uni-app",
  90. "navigationBarBackgroundColor": "#fff",
  91. "backgroundColor": "#222"
  92. },
  93. "uniIdRouter": {},
  94. "tabBar": {
  95. "color": "#333333",
  96. "selectedColor": "#F83224",
  97. "list": [{
  98. "iconPath": "static/express1.png",
  99. "selectedIconPath": "static/express1.png",
  100. "text": "跨境速递",
  101. "pagePath": "pages/express/express"
  102. },
  103. {
  104. "iconPath": "static/index1.png",
  105. "selectedIconPath": "static/index2.png",
  106. "text": "商城",
  107. "pagePath": "pages/index/index"
  108. },
  109. {
  110. "iconPath": "static/index1.png",
  111. "selectedIconPath": "static/index2.png",
  112. "text": "购",
  113. "pagePath": "pages/shopping/shopping"
  114. },
  115. {
  116. "iconPath": "static/cart1.png",
  117. "selectedIconPath": "static/cart2.png",
  118. "text": "购物车",
  119. "pagePath": "pages/cart/cart"
  120. },
  121. {
  122. "iconPath": "static/mine1.png",
  123. "selectedIconPath": "static/mine2.png",
  124. "text": "我的",
  125. "pagePath": "pages/mine/mine"
  126. }
  127. ]
  128. }
  129. }