25 lines
1.2 KiB
Plaintext
25 lines
1.2 KiB
Plaintext
<view class="ad-popup" wx:if="{{visible}}">
|
|
<view class="ad-content" animation="{{animation}}" style="left: {{initPosition.left}};top:{{initPosition.top}}">
|
|
<view class="ic-close close-icon" bind:tap="onClose"></view>
|
|
<view class="image-box">
|
|
<view class="ad-bg img"></view>
|
|
<view class="content">
|
|
<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>
|
|
<view class="ad-period">有效期:{{coupons.useGmtStart}}至{{coupons.useGmtEnd}}</view>
|
|
</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>
|
|
</view>
|
|
</view> |