34 lines
1.3 KiB
Plaintext
34 lines
1.3 KiB
Plaintext
|
|
<nav-bar back>
|
|
<label class="title">活动福利</label>
|
|
</nav-bar>
|
|
<view class="loadings">
|
|
<view class="weui-loading" wx:if="{{detailLoading}}"></view>
|
|
</view>
|
|
<view class="promation-coupon">
|
|
<view class="coupon-list">
|
|
<view class="item" wx:for="{{detail.coupons}}" wx:key="index">
|
|
<view class="name">
|
|
<view class="left">{{item.name}} <block wx:if="{{item.count>1}}">x {{item.count}}</block></view>
|
|
<view class="right money money-normal" wx:if="{{item.amount>0}}">{{item.amount}}</view>
|
|
</view>
|
|
<view class="tips">使用有效期:{{item.available_days}} 天</view>
|
|
</view>
|
|
</view>
|
|
<!-- <button class="button diabled" disabled type="primary"
|
|
wx:if="{{detail.is_end||!detail.is_active||!detail.can_receive}}">
|
|
{{
|
|
detail.is_end?'活动已结束':
|
|
!detail.is_active?'活动已关闭':
|
|
!detail.can_receive?'无法领取':''
|
|
}}
|
|
</button> -->
|
|
<button disabled="{{getting}}" loading="{{getting}}" type="primary"
|
|
class="button get" bind:tap="getActivity">一键领取</button>
|
|
</view>
|
|
<image src="/assets/imgs/login/main.png" class="bottom-img"/>
|
|
|
|
<modal-view titleText="{{errorMsg}}"
|
|
okButtonText="{{hasProduct&&reveivedSuccess?'去兑换':'回到首页'}}"
|
|
cancelButtonText="再想想"
|
|
bind:ok="navToIndex" show="{{isShowModal}}"/> |