app.json 1.4 KB

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