app.json 1.1 KB

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