app.json 935 B

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