16 lines
643 B
Plaintext
16 lines
643 B
Plaintext
![]() |
<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>
|