1
0

app.json 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "pages": [
  3. "pages/login/login",
  4. "pages/register/register",
  5. "pages/order/order",
  6. "pages/home/home",
  7. "pages/my/my",
  8. "pages/detail/detail",
  9. "pages/address/address",
  10. "pages/shop/shop",
  11. "pages/type/type",
  12. "pages/list/list"
  13. ],
  14. "subPackages": [],
  15. "window": {
  16. "navigationBarTextStyle": "white",
  17. "navigationBarTitleText": "uni-app",
  18. "navigationBarBackgroundColor": "#ff0000"
  19. },
  20. "tabBar": {
  21. "color": "#000000",
  22. "selectedColor": "#ff0000",
  23. "borderStyle": "black",
  24. "backgroundColor": "#ffffff",
  25. "list": [
  26. {
  27. "pagePath": "pages/home/home",
  28. "iconPath": "static/home.png",
  29. "selectedIconPath": "static/home_active.png",
  30. "text": "首页"
  31. },
  32. {
  33. "pagePath": "pages/type/type",
  34. "iconPath": "static/type.png",
  35. "selectedIconPath": "static/type_active.png",
  36. "text": "分类"
  37. },
  38. {
  39. "pagePath": "pages/shop/shop",
  40. "iconPath": "static/shop.png",
  41. "selectedIconPath": "static/shop_active.png",
  42. "text": "购物车"
  43. },
  44. {
  45. "pagePath": "pages/my/my",
  46. "iconPath": "static/my.png",
  47. "selectedIconPath": "static/my_active.png",
  48. "text": "我的"
  49. }
  50. ]
  51. },
  52. "usingComponents": {
  53. "van-button": "/wxcomponents/dist/button/index",
  54. "van-image": "/wxcomponents/dist/image/index",
  55. "van-field": "/wxcomponents/dist/field/index",
  56. "van-tabbar": "/wxcomponents/dist/tabbar/index",
  57. "van-tabbar-item": "/wxcomponents/dist/tabbar-item/index",
  58. "van-search": "/wxcomponents/dist/search/index",
  59. "van-grid": "/wxcomponents/dist/grid/index",
  60. "van-grid-item": "/wxcomponents/dist/grid-item/index",
  61. "van-notice-bar": "/wxcomponents/dist/notice-bar/index",
  62. "van-tree-select": "/wxcomponents/dist/tree-select/index",
  63. "van-card": "/wxcomponents/dist/card/index",
  64. "van-sidebar": "/wxcomponents/dist/sidebar/index",
  65. "van-sidebar-item": "/wxcomponents/dist/sidebar-item/index",
  66. "van-empty": "/wxcomponents/dist/empty/index",
  67. "van-row": "/wxcomponents/dist/row/index",
  68. "van-col": "/wxcomponents/dist/col/index",
  69. "van-icon": "/wxcomponents/dist/icon/index",
  70. "van-divider": "/wxcomponents/dist/divider/index",
  71. "van-cell": "/wxcomponents/dist/cell/index",
  72. "van-cell-group": "/wxcomponents/dist/cell-group/index",
  73. "van-tag": "/wxcomponents/dist/tag/index",
  74. "van-goods-action": "/wxcomponents/dist/goods-action/index",
  75. "van-goods-action-icon": "/wxcomponents/dist/goods-action-icon/index",
  76. "van-goods-action-button": "/wxcomponents/dist/goods-action-button/index",
  77. "van-action-sheet": "/wxcomponents/dist/action-sheet/index",
  78. "van-stepper": "/wxcomponents/dist/stepper/index",
  79. "van-toast": "/wxcomponents/dist/toast/index",
  80. "van-checkbox": "/wxcomponents/dist/checkbox/index",
  81. "van-checkbox-group": "/wxcomponents/dist/checkbox-group/index",
  82. "van-submit-bar": "/wxcomponents/dist/submit-bar/index",
  83. "van-tab": "/wxcomponents/dist/tab/index",
  84. "van-tabs": "/wxcomponents/dist/tabs/index"
  85. }
  86. }