app.json 953 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "pages": [
  3. "pages/homepage/homepage",
  4. "pages/mine/mine"
  5. ],
  6. "tabBar": {
  7. "color": "#a9b7b7",
  8. "selectedColor": "#11cd6e",
  9. "borderStyle": "white",
  10. "position": "bottom",
  11. "list": [
  12. {
  13. "selectedIconPath": "static_file/1.png",
  14. "iconPath": "static_file/1.png",
  15. "pagePath": "pages/homepage/homepage",
  16. "text": "首页"
  17. },
  18. {
  19. "selectedIconPath": "static_file/1.png",
  20. "iconPath": "static_file/1.png",
  21. "pagePath": "pages/mine/mine",
  22. "text": "我的"
  23. }
  24. ]
  25. },
  26. "window": {
  27. "backgroundTextStyle": "light",
  28. "navigationBarTextStyle": "white",
  29. "navigationBarTitleText": "智惠水务",
  30. "navigationBarBackgroundColor": "#07f"
  31. },
  32. "componentFramework": "glass-easel",
  33. "sitemapLocation": "sitemap.json",
  34. "lazyCodeLoading": "requiredComponents",
  35. "usingComponents": {
  36. "t-button": "tdesign-miniprogram/button/button"
  37. }
  38. }