app.json 804 B

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