app.json 871 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/search/index",
  5. "pages/me/me",
  6. "pages/confirm/confirm"
  7. ],
  8. "window": {
  9. "backgroundTextStyle": "light",
  10. "navigationBarBackgroundColor": "#fff",
  11. "navigationBarTitleText": "外卖小程序",
  12. "navigationBarTextStyle": "black"
  13. },
  14. "tabBar": {
  15. "color": "#CBCBCB",
  16. "selectedColor": "#F9872C",
  17. "list": [
  18. {
  19. "pagePath": "pages/index/index",
  20. "text": "首页",
  21. "iconPath": "/images/icon/index.png",
  22. "selectedIconPath": "/images/icon/index-select.png"
  23. },
  24. {
  25. "pagePath": "pages/me/me",
  26. "text": "我的",
  27. "iconPath": "/images/icon/me.png",
  28. "selectedIconPath": "/images/icon/me-select .png"
  29. }
  30. ]
  31. },
  32. "usingComponents": {
  33. "van-button": "@vant/weapp/button"
  34. },
  35. "sitemapLocation": "sitemap.json"
  36. }