Q3学习计划
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

136 lines
3.3 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. {
  2. //
  3. "easycom": {
  4. // @/components/$1/$1.vue
  5. "autoscan": true,
  6. //
  7. "custom": {
  8. // uni-ui
  9. "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue",
  10. // Xtx components
  11. "^Xtx(.*)": "@/components/Xtx$1.vue"
  12. }
  13. },
  14. "pages": [
  15. //pageshttps://uniapp.dcloud.io/collocation/pages
  16. {
  17. "path": "pages/index/index",
  18. "style": {
  19. "navigationStyle": "custom", //
  20. "navigationBarTextStyle": "white",
  21. "navigationBarTitleText": "首页"
  22. }
  23. },
  24. {
  25. "path": "pages/my/my",
  26. "style": {
  27. "navigationStyle": "custom", //
  28. "navigationBarTextStyle": "white",
  29. "navigationBarTitleText": "我的"
  30. }
  31. },
  32. {
  33. "path": "pages/cart/cart",
  34. "style": {
  35. "navigationBarTitleText": "购物车"
  36. }
  37. },
  38. {
  39. "path": "pages/category/category",
  40. "style": {
  41. "navigationBarTitleText": "分类"
  42. }
  43. },
  44. {
  45. "path": "pages/login/login",
  46. "style": {
  47. "navigationBarTitleText": "登录"
  48. }
  49. },
  50. {
  51. "path" : "pages/hot/hot",
  52. "style" :
  53. {
  54. "navigationBarTitleText" : "热门推荐"
  55. }
  56. },
  57. {
  58. "path" : "pages/goods/goods",
  59. "style" :
  60. {
  61. "navigationBarTitleText" : "商品详情"
  62. }
  63. }
  64. ],
  65. "globalStyle": {
  66. "navigationBarTextStyle": "black",
  67. "navigationBarTitleText": "",
  68. "navigationBarBackgroundColor": "#F8F8F8",
  69. "backgroundColor": "#F8F8F8"
  70. },
  71. // TabBar
  72. "tabBar": {
  73. "color": "#333",
  74. "selectedColor": "#27ba9b",
  75. "backgroundColor": "#fff",
  76. "borderStyle": "white",
  77. "list": [
  78. {
  79. "text": "首页",
  80. "pagePath": "pages/index/index",
  81. "iconPath": "static/tabs/home_default.png",
  82. "selectedIconPath": "static/tabs/home_selected.png"
  83. },
  84. {
  85. "text": "分类",
  86. "pagePath": "pages/category/category",
  87. "iconPath": "static/tabs/category_default.png",
  88. "selectedIconPath": "static/tabs/category_selected.png"
  89. },
  90. {
  91. "text": "购物车",
  92. "pagePath": "pages/cart/cart",
  93. "iconPath": "static/tabs/cart_default.png",
  94. "selectedIconPath": "static/tabs/cart_selected.png"
  95. },
  96. {
  97. "text": "我的",
  98. "pagePath": "pages/my/my",
  99. "iconPath": "static/tabs/user_default.png",
  100. "selectedIconPath": "static/tabs/user_selected.png"
  101. }
  102. ]
  103. },
  104. //
  105. "subPackages": [
  106. {
  107. //
  108. "root": "pagesMember",
  109. "pages": [
  110. {
  111. "path" : "settings/settings",
  112. "style" :
  113. {
  114. "navigationBarTitleText" : "设置"
  115. }
  116. },
  117. {
  118. "path" : "profile/profile",
  119. "style" :
  120. {
  121. "navigationStyle": "custom",
  122. "navigationBarTextStyle": "white",
  123. "navigationBarTitleText" : "个人中心"
  124. }
  125. }
  126. ]
  127. }
  128. ],
  129. //
  130. "preloadRule": {
  131. "pages/my/my": {
  132. "network": "all",
  133. "packages": ["pagesMember"]
  134. }
  135. }
  136. }