pages.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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": "商城"
  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. "path": "pages/login/login",
  43. "style": {
  44. "navigationBarTitleText": "登录",
  45. "enablePullDownRefresh": false
  46. }
  47. }
  48. ],
  49. "subPackages": [{
  50. "root": "pageA",
  51. "pages": [{
  52. "path": "index",
  53. "style": {
  54. "navigationBarTitleText": "",
  55. "enablePullDownRefresh": false
  56. }
  57. }
  58. ]
  59. },
  60. {
  61. "root": "pageB",
  62. "pages": [{
  63. "path": "index",
  64. "style": {
  65. "navigationBarTitleText": "",
  66. "enablePullDownRefresh": false
  67. }
  68. }
  69. ]
  70. },
  71. {
  72. "root": "pageC",
  73. "pages": [{
  74. "path": "index",
  75. "style": {
  76. "navigationBarTitleText": "",
  77. "enablePullDownRefresh": false
  78. }
  79. }
  80. ]
  81. },
  82. {
  83. "root": "pageD",
  84. "pages": [{
  85. "path": "index",
  86. "style": {
  87. "navigationBarTitleText": "",
  88. "enablePullDownRefresh": false
  89. }
  90. }
  91. ]
  92. }
  93. ],
  94. "globalStyle": {
  95. "navigationBarTextStyle": "black",
  96. "navigationBarTitleText": "uni-app",
  97. "navigationBarBackgroundColor": "#fff",
  98. "backgroundColor": "#222"
  99. },
  100. "uniIdRouter": {}
  101. // "tabBar": {
  102. // // "color": "#333333",
  103. // // "selectedColor": "#F83224",
  104. // // "list": [{
  105. // // "iconPath": "static/express1.png",
  106. // // "selectedIconPath": "static/express2.png",
  107. // // "text": "跨境速递",
  108. // // "pagePath": "pages/express/express"
  109. // // },
  110. // // {
  111. // // "iconPath": "static/index1.png",
  112. // // "selectedIconPath": "static/index2.png",
  113. // // "text": "商城",
  114. // // "pagePath": "pages/index/index"
  115. // // },
  116. // // {
  117. // // "iconPath": "static/shop.png",
  118. // // "selectedIconPath": "static/shop.png",
  119. // // "text": "购",
  120. // // "pagePath": "pages/shopping/shopping"
  121. // // },
  122. // // {
  123. // // "iconPath": "static/cart1.png",
  124. // // "selectedIconPath": "static/cart2.png",
  125. // // "text": "购物车",
  126. // // "pagePath": "pages/cart/cart"
  127. // // },
  128. // // {
  129. // // "iconPath": "static/mine1.png",
  130. // // "selectedIconPath": "static/mine2.png",
  131. // // "text": "我的",
  132. // // "pagePath": "pages/mine/mine"
  133. // // }
  134. // // ]
  135. // "list": [{
  136. // "pagePath": "pages/express/express"
  137. // },
  138. // {
  139. // "pagePath": "pages/index/index"
  140. // },
  141. // {
  142. // "pagePath": "pages/shopping/shopping"
  143. // },
  144. // {
  145. // "pagePath": "pages/cart/cart"
  146. // },
  147. // {
  148. // "pagePath": "pages/mine/mine"
  149. // }
  150. // ]
  151. // }
  152. }