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