promotionCell.wxml
418 Bytes
<view class="promotion-cell" bindtap="select">
促销
<text class="promotion-tip">{{info.title}}</text>
<view class="choose">
<block wx:if="{{amount}}">
<text class="value chosen">-¥{{amount}}</text>
</block>
<block wx:else>
<text class="value">未参与</text>
</block>
<image class="right"
src="../../../../static/images/arrow-right-2.png"></image>
</view>
</view>