app.json 855 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "pages": [
  3. "pages/homePage/homePage",
  4. "pages/settlement/settlement",
  5. "pages/index/index",
  6. "pages/logs/logs",
  7. "pages/my/my"
  8. ],
  9. "window": {
  10. "backgroundTextStyle": "light",
  11. "navigationBarBackgroundColor": "#fff",
  12. "navigationBarTitleText": "Weixin",
  13. "navigationBarTextStyle": "black"
  14. },
  15. "tabBar":{
  16. "selectedColor":"#EA986C",
  17. "list":[{
  18. "pagePath":"pages/homePage/homePage",
  19. "text": "首页",
  20. "iconPath": "pages/homePage/shouye.png",
  21. "selectedIconPath": "pages/homePage/shouye1.png"
  22. },{
  23. "pagePath":"pages/my/my",
  24. "text": "我的",
  25. "iconPath": "pages/homePage/wode.png",
  26. "selectedIconPath": "pages/homePage/wode1.png"
  27. }]
  28. },
  29. "usingComponents": {
  30. "van-button": "@vant/weapp/button"
  31. },
  32. "sitemapLocation": "sitemap.json"
  33. }