pages.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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. "navigationStyle": "custom"
  12. }
  13. },
  14. {
  15. "path": "pages/mine/mine",
  16. "style": {
  17. "navigationBarTitleText": "",
  18. "enablePullDownRefresh": false
  19. }
  20. },
  21. {
  22. "path": "pages/express/express",
  23. "style": {
  24. "navigationBarTitleText": "",
  25. "enablePullDownRefresh": false
  26. }
  27. },
  28. {
  29. "path": "pages/shopping/shopping",
  30. "style": {
  31. "navigationBarTitleText": "",
  32. "enablePullDownRefresh": false
  33. }
  34. },
  35. {
  36. "path": "pages/cart/cart",
  37. "style": {
  38. "navigationBarTitleText": "",
  39. "enablePullDownRefresh": false
  40. }
  41. },
  42. {
  43. "path": "pages/login/login",
  44. "style": {
  45. "navigationBarTitleText": "登录",
  46. "enablePullDownRefresh": false
  47. }
  48. }
  49. ],
  50. "subPackages": [{
  51. "root": "pageA",
  52. "pages": [{
  53. "path": "index",
  54. "style": {
  55. "navigationBarTitleText": "",
  56. "enablePullDownRefresh": false
  57. }
  58. }
  59. ]
  60. },
  61. {
  62. "root": "pageB",
  63. "pages": [{
  64. "path": "index",
  65. "style": {
  66. "navigationBarTitleText": "",
  67. "enablePullDownRefresh": false
  68. }
  69. }
  70. ]
  71. },
  72. {
  73. "root": "pageC",
  74. "pages": [{
  75. "path": "index",
  76. "style": {
  77. "navigationBarTitleText": "",
  78. "enablePullDownRefresh": false
  79. }
  80. },
  81. {
  82. "path" : "accountBalance/accountBalance",
  83. "style" :
  84. {
  85. "navigationBarTitleText" : "账户余额"
  86. }
  87. }
  88. ]
  89. },
  90. {
  91. "root": "pageD",
  92. "pages": [{
  93. "path": "index",
  94. "style": {
  95. "navigationBarTitleText": "",
  96. "enablePullDownRefresh": false
  97. }
  98. }
  99. ]
  100. }
  101. ],
  102. "globalStyle": {
  103. "navigationBarTextStyle": "black",
  104. "navigationBarTitleText": "uni-app",
  105. "navigationBarBackgroundColor": "#fff",
  106. "backgroundColor": "#222"
  107. },
  108. "uniIdRouter": {},
  109. "tabBar": {
  110. "color": "#333333",
  111. "selectedColor": "#F83224",
  112. // "list": [
  113. // {
  114. // "iconPath": "static/express1.png",
  115. // "selectedIconPath": "static/express2.png",
  116. // "text": "跨境速递",
  117. // "pagePath": "pages/express/express"
  118. // },
  119. // {
  120. // "iconPath": "static/index1.png",
  121. // "selectedIconPath": "static/index2.png",
  122. // "text": "商城",
  123. // "pagePath": "pages/index/index"
  124. // },
  125. // {
  126. // "iconPath": "static/shop.png",
  127. // "selectedIconPath": "static/shop.png",
  128. // "text": "购",
  129. // "pagePath": "pages/shopping/shopping"
  130. // },
  131. // {
  132. // "iconPath": "static/cart1.png",
  133. // "selectedIconPath": "static/cart2.png",
  134. // "text": "购物车",
  135. // "pagePath": "pages/cart/cart"
  136. // },
  137. // {
  138. // "iconPath": "static/mine1.png",
  139. // "selectedIconPath": "static/mine2.png",
  140. // "text": "我的",
  141. // "pagePath": "pages/mine/mine"
  142. // }
  143. // ]
  144. "custom": true,
  145. "list": [{
  146. "pagePath": "pages/express/express"
  147. },
  148. {
  149. "pagePath": "pages/index/index"
  150. },
  151. {
  152. "pagePath": "pages/shopping/shopping"
  153. },
  154. {
  155. "pagePath": "pages/cart/cart"
  156. },
  157. {
  158. "pagePath": "pages/mine/mine"
  159. }
  160. ]
  161. }
  162. }