app.json 898 B

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