41 lines
1.6 KiB
Plaintext
41 lines
1.6 KiB
Plaintext
<view class="list" wx:if="{{couponArr.length > 0}}">
|
|
<view class="item" wx:for="{{couponArr}}" wx:key="couponArr">
|
|
<image class="tipsImg" src="http://api.siyuankunlun.com/storage/materials/2022/09/14/coupons_tips.png" mode="widthFix"></image>
|
|
<view class="top">
|
|
<view class="left">
|
|
<view class="name">
|
|
{{item.title}}
|
|
</view>
|
|
<view class="time" wx:if="{{item.time}}">
|
|
{{item.time.interval}}
|
|
</view>
|
|
</view>
|
|
<view class="right">
|
|
<view class="right-prop">
|
|
<text>¥</text>{{item.price}}
|
|
</view>
|
|
<view class="right-tips">
|
|
{{item.price_text}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<navigator hover-class="none" url="../list/index?couponid={{item.coupon_id}}" class="bottom">
|
|
<view class="tips">
|
|
共<text>{{item.coupon_count}}</text>张{{item.title}}
|
|
</view>
|
|
<image class="arrow" src="/static/icons/coupons_arrow.png"></image>
|
|
</navigator>
|
|
</view>
|
|
<view class="pagesLoding" wx:if="{{lodingStats}}">
|
|
<block wx:if="{{page.has_more}}">
|
|
<image class="pagesLoding-icon" src="/static/icon/refresh_loding.gif" mode="widthFix"></image>加载中...
|
|
</block>
|
|
<block wx:else>
|
|
没有更多了~
|
|
</block>
|
|
</view>
|
|
</view>
|
|
<view class="pack-center pages-hint" wx:else>
|
|
<image src="/static/imgs/coupon_null.png"></image>
|
|
<view>暂无数据</view>
|
|
</view> |