riku
2025-04-21 0746b7bbe6aa3d9f02e03654a2cd4fde2081c335
miniprogram_npm/tdesign-miniprogram/toast/toast.wxml
@@ -28,9 +28,11 @@
  </view>
</view>
<t-overlay
  style="{{ overlayProps.style || ''}}"
  style="{{ overlayProps && overlayProps.style || ''}}"
  visible="{{realVisible && (showOverlay || preventScrollThrough)}}"
  z-index="{{overlayProps.zIndex || 11000}}"
  backgroundColor="{{preventScrollThrough ? 'transparent' : overlayProps.backgroundColor || ''}}"
  preventScrollThrough="{{preventScrollThrough || overlayProps.preventScrollThrough}}"
  z-index="{{overlayProps && overlayProps.zIndex || 11000}}"
  duration="{{overlayProps && overlayProps.duration || 300}}"
  usingCustomNavbar="{{overlayProps && overlayProps.usingCustomNavbar || usingCustomNavbar}}"
  backgroundColor="{{preventScrollThrough ? 'transparent' : overlayProps && overlayProps.backgroundColor || ''}}"
  preventScrollThrough="{{preventScrollThrough || overlayProps && overlayProps.preventScrollThrough}}"
/>