app.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "usingComponents": {
  3. "van-button": "@vant/weapp/button/index",
  4. "van-image": "@vant/weapp/image/index",
  5. "van-icon": "@vant/weapp/icon/index",
  6. "van-search": "@vant/weapp/search/index"
  7. },
  8. "pages":[
  9. "pages/home/home",
  10. "pages/classify/classify",
  11. "pages/append/append",
  12. "pages/message/message",
  13. "pages/user/user"
  14. ],
  15. "window":{
  16. "backgroundTextStyle":"light",
  17. "navigationBarBackgroundColor": "#fff",
  18. "navigationBarTitleText": "WeChatTrading",
  19. "navigationBarTextStyle":"black"
  20. },
  21. "tabBar": {
  22. "list": [
  23. {
  24. "pagePath": "pages/home/home",
  25. "iconPath": "/assets/tabBar_img/home.png",
  26. "selectedIconPath": "/assets/tabBar_img/home-active.png"
  27. },
  28. {
  29. "pagePath": "pages/classify/classify",
  30. "iconPath": "/assets/tabBar_img/classify.png",
  31. "selectedIconPath": "/assets/tabBar_img/classify-active.png"
  32. },
  33. {
  34. "pagePath": "pages/append/append",
  35. "iconPath": "/assets/tabBar_img/append.png",
  36. "selectedIconPath": "/assets/tabBar_img/append-active.png"
  37. },
  38. {
  39. "pagePath": "pages/message/message",
  40. "iconPath": "/assets/tabBar_img/message.png",
  41. "selectedIconPath": "/assets/tabBar_img/message-active.png"
  42. },
  43. {
  44. "pagePath": "pages/user/user",
  45. "iconPath": "/assets/tabBar_img/user.png",
  46. "selectedIconPath": "/assets/tabBar_img/user-active.png"
  47. }
  48. ],
  49. "borderStyle": "white"
  50. },
  51. "sitemapLocation": "sitemap.json"
  52. }