2025-03-21 09:02:29 +08:00
|
|
|
<view class="ad-popup" wx:if="{{visible}}">
|
2025-04-22 14:26:58 +08:00
|
|
|
<view class="ad-container" animation="{{animation}}" style="left: {{initPosition.left}};top:{{initPosition.top}}">
|
2025-04-07 18:00:30 +08:00
|
|
|
<view class="ic-close close-icon" bind:tap="onClose"></view>
|
|
|
|
<view class="image-box">
|
2025-04-10 10:06:47 +08:00
|
|
|
<view class="ad-bg"></view>
|
2025-04-22 14:26:58 +08:00
|
|
|
<view class="ad-content">
|
2025-04-07 18:00:30 +08:00
|
|
|
<view class="price-box">
|
|
|
|
<view class="p-icon">¥</view>
|
|
|
|
<view class="p-content">{{coupons.amount/100}}</view>
|
|
|
|
</view>
|
|
|
|
<view class="ad-desc-box">
|
|
|
|
<text class="ad-desc">{{coupons.title}}</text>
|
2025-04-22 14:26:58 +08:00
|
|
|
<view class="ad-period">期限:{{coupons.useGmtStart}}至{{coupons.useGmtEnd}}</view>
|
2025-04-07 18:00:30 +08:00
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="custom-checkbox-group" bindtap="toggleCheck">
|
|
|
|
<view class="custom-checkbox {{checked ? 'checked' : ''}}">
|
|
|
|
<text wx:if="{{checked}}">✓</text>
|
|
|
|
</view>
|
|
|
|
<view style="margin-left: 5px;margin-top: 1px;">今日不再显示</view>
|
|
|
|
</view>
|
|
|
|
<view class="btn" bind:tap="onFurl">收下优惠卷</view>
|
2025-03-21 09:02:29 +08:00
|
|
|
</view>
|
|
|
|
</view>
|