app.json 1.0 KB

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