app.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/my/my",
  5. "pages/list/list",
  6. "pages/detail/detail"
  7. ],
  8. "window": {
  9. "navigationBarTextStyle": "white",
  10. "navigationBarTitleText": "基础",
  11. "navigationBarBackgroundColor": "#f00",
  12. "navigationStyle": "default",
  13. "backgroundTextStyle": "light"
  14. },
  15. "tabBar": {
  16. "custom": false,
  17. "color": "#000000",
  18. "selectedColor": "#ff0000",
  19. "backgroundColor": "#fff",
  20. "list": [
  21. {
  22. "pagePath": "pages/home/home",
  23. "text": "首页",
  24. "iconPath": "/icons/home.png",
  25. "selectedIconPath": "/icons/homeActive.png"
  26. },
  27. {
  28. "pagePath": "pages/list/list",
  29. "text": "列表",
  30. "iconPath": "/icons/list.png",
  31. "selectedIconPath": "/icons/listActive.png"
  32. },
  33. {
  34. "pagePath": "pages/my/my",
  35. "text": "我的",
  36. "iconPath": "/icons/my.png",
  37. "selectedIconPath": "/icons/myActive.png"
  38. }
  39. ]
  40. },
  41. "usingComponents": {
  42. "van-button": "@vant/weapp/button/index"
  43. },
  44. "componentFramework": "glass-easel",
  45. "sitemapLocation": "sitemap.json",
  46. "lazyCodeLoading": "requiredComponents"
  47. }