app.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "pages": [
  3. "pages/login/login",
  4. "pages/register/register",
  5. "pages/home/home",
  6. "pages/my/my",
  7. "pages/shop/shop",
  8. "pages/type/type",
  9. "pages/detail/detail"
  10. ],
  11. "subPackages": [],
  12. "window": {
  13. "navigationBarTextStyle": "white",
  14. "navigationBarTitleText": "uni-app",
  15. "navigationBarBackgroundColor": "#FF0000",
  16. "backgroundColor": "#F8F8F8"
  17. },
  18. "tabBar": {
  19. "color": "#000000",
  20. "selectedColor": "#ff0000",
  21. "borderStyle": "black",
  22. "backgroundColor": "#ffffff",
  23. "list": [
  24. {
  25. "pagePath": "pages/home/home",
  26. "iconPath": "static/home.png",
  27. "selectedIconPath": "static/home_active.png",
  28. "text": "首页"
  29. },
  30. {
  31. "pagePath": "pages/type/type",
  32. "iconPath": "static/type.png",
  33. "selectedIconPath": "static/type_active.png",
  34. "text": "分类"
  35. },
  36. {
  37. "pagePath": "pages/shop/shop",
  38. "iconPath": "static/shop.png",
  39. "selectedIconPath": "static/shop_active.png",
  40. "text": "购物车"
  41. },
  42. {
  43. "pagePath": "pages/my/my",
  44. "iconPath": "static/my.png",
  45. "selectedIconPath": "static/my_active.png",
  46. "text": "我的"
  47. }
  48. ]
  49. },
  50. "usingComponents": {
  51. "van-button": "/wxcomponents/dist/button/index",
  52. "van-field": "/wxcomponents/dist/field/index",
  53. "van-toast": "/wxcomponents/dist/toast/index",
  54. "van-search": "/wxcomponents/dist/search/index",
  55. "van-grid": "/wxcomponents/dist/grid/index",
  56. "van-grid-item": "/wxcomponents/dist/grid-item/index",
  57. "van-notice-bar": "/wxcomponents/dist/notice-bar/index"
  58. }
  59. }