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.

88 lines
2.3 KiB

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. "navigationBarTitleText": "我的"
  28. }
  29. },
  30. {
  31. "path": "pages/cart/cart",
  32. "style": {
  33. "navigationBarTitleText": "购物车"
  34. }
  35. },
  36. {
  37. "path": "pages/category/category",
  38. "style": {
  39. "navigationBarTitleText": "分类"
  40. }
  41. },
  42. {
  43. "path": "pages/login/login",
  44. "style": {
  45. "navigationBarTitleText": "登录"
  46. }
  47. }
  48. ],
  49. "globalStyle": {
  50. "navigationBarTextStyle": "black",
  51. "navigationBarTitleText": "",
  52. "navigationBarBackgroundColor": "#F8F8F8",
  53. "backgroundColor": "#F8F8F8"
  54. },
  55. // TabBar
  56. "tabBar": {
  57. "color": "#333",
  58. "selectedColor": "#27ba9b",
  59. "backgroundColor": "#fff",
  60. "borderStyle": "white",
  61. "list": [
  62. {
  63. "text": "首页",
  64. "pagePath": "pages/index/index",
  65. "iconPath": "static/tabs/home_default.png",
  66. "selectedIconPath": "static/tabs/home_selected.png"
  67. },
  68. {
  69. "text": "分类",
  70. "pagePath": "pages/category/category",
  71. "iconPath": "static/tabs/category_default.png",
  72. "selectedIconPath": "static/tabs/category_selected.png"
  73. },
  74. {
  75. "text": "购物车",
  76. "pagePath": "pages/cart/cart",
  77. "iconPath": "static/tabs/cart_default.png",
  78. "selectedIconPath": "static/tabs/cart_selected.png"
  79. },
  80. {
  81. "text": "我的",
  82. "pagePath": "pages/my/my",
  83. "iconPath": "static/tabs/user_default.png",
  84. "selectedIconPath": "static/tabs/user_selected.png"
  85. }
  86. ]
  87. }
  88. }