Commit f5b2abf08df1b1e30bf66457ec66a40b40d0f60f
Merge branch 'dev' into 'test'
新人有礼优惠券列表添加一个包邮券状态 See merge request !236
Showing
1 changed file
with
6 additions
and
1 deletions
pages/giftpack/newvipgift/newvipgift.wxml
... | ... | @@ -94,7 +94,12 @@ |
94 | 94 | <view class="top_card_tite_a">分类限定</view> |
95 | 95 | </block> |
96 | 96 | </view> |
97 | - <view class="top_card_counte ">{{item.sum+"元券"}}</view> | |
97 | + <block wx:if="{{item.isPack!=null}}"> | |
98 | + <view class="top_card_counte">包邮券</view> | |
99 | + </block> | |
100 | + <block wx:else> | |
101 | + <view class="top_card_counte ">{{item.sum+"元券"}}</view> | |
102 | + </block> | |
98 | 103 | <view class="top_card_remak ">{{"满"+item.buySum+"元可以用"}}</view> |
99 | 104 | </view> |
100 | 105 | </view> | ... | ... |