36 lines
2.2 KiB
Plaintext
36 lines
2.2 KiB
Plaintext
<view class="ad-popup" wx:if="{{visible}}">
|
|
<view class="ad-container" animation="{{animation}}" style="left: {{initPosition.left}};top:{{initPosition.top}}">
|
|
<view class="ic-close close-icon" bind:tap="onClose"></view>
|
|
<view class="image-box">
|
|
<image src="https://www.aimzhu.com/miniapp-assets/ad_background.png" mode="scaleToFill" class="ad-coupons-box-bg"></image>
|
|
<view class="ad-coupons-container">
|
|
<scroll-view scroll-y style="height: {{couponsList.length>1 ? '550rpx' :'350rpx'}};">
|
|
<view class="ad-coupons-list-box">
|
|
<block wx:for="{{couponsList}}" wx:key="index">
|
|
<view class="ad-coupons-item">
|
|
<image src="https://www.aimzhu.com/miniapp-assets/ad_item_bg.png" style="width: 100%;height:100%;" mode="scaleToFill"></image>
|
|
<view class="ad-coupons-item-content">
|
|
<view class="ad-coupons-item-price">
|
|
<rich-text nodes="{{tools.coverTxt(item.amount/100)}}"></rich-text>
|
|
</view>
|
|
<view class="ad-coupons-item-desc">
|
|
<view class="ad-coupons-item-desc-title">{{item.title}}</view>
|
|
<view class="ad-coupons-item-desc-time">{{item.useGmtStart}}至{{item.useGmtEnd}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</scroll-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>
|
|
</view>
|
|
</view>
|
|
<wxs src="../../utils/comm.wxs" module="tools"></wxs> |