app.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "pages": [
  3. "pages/homepage/homepage",
  4. "pages/FirstBangDing/FirstBangDing",
  5. "pages/profile/profile",
  6. "pages/huhaobangding/huhaobangding",
  7. "pages/lijijiaofei/lijijiaofei"
  8. ],
  9. "tabBar": {
  10. "color": "rgba(182, 189, 205, 1)",
  11. "selectedColor": "#000000",
  12. "backgroundColor": "#ffffff",
  13. "list": [
  14. {
  15. "pagePath": "pages/homepage/homepage",
  16. "text": "首页",
  17. "iconPath": "static_file/homepage.png",
  18. "selectedIconPath": "static_file/homepageCheck.png"
  19. },
  20. {
  21. "pagePath": "pages/profile/profile",
  22. "text": "我的",
  23. "iconPath": "static_file/personalCenter.png",
  24. "selectedIconPath": "static_file/personalCenterCheck.png"
  25. }
  26. ]
  27. },
  28. "window": {
  29. "backgroundTextStyle": "light",
  30. "navigationBarBackgroundColor": "#4080FF",
  31. "navigationStyle": "custom"
  32. },
  33. "componentFramework": "glass-easel",
  34. "sitemapLocation": "sitemap.json",
  35. "lazyCodeLoading": "requiredComponents",
  36. "usingComponents": {
  37. "t-button": "tdesign-miniprogram/button/button"
  38. }
  39. }