16 lines
643 B
Plaintext
Raw Normal View History

2025-06-06 15:17:30 +08:00
<view class="popup-overlay {{animate ? 'show' : ''}}" wx:if="{{visible}}" bindtap="handleOverlayTap" bindtouchstart="handleTouchStart" bindtouchmove="handleTouchMove" bindtouchend="handleTouchEnd">
<view class="popup-container" >
<view class="popup-contain">
<view class="popup-header">
<text class="popup-title">倒计时设置</text>
<view class="popup-actions">
<text class="cancel" bindtap="handleCancel">取消</text>
<text class="confirm" bindtap="handleConfirm">确定</text>
</view>
</view>
<view class="popup-content">
<slot></slot>
</view>
</view>
</view>
</view>