info.wxml 812 B

1234567891011121314151617181920212223242526
  1. <view class="layer">
  2. <auth bindlogin="onShow" />
  3. <view class="content">
  4. <view class="title">{{info.name}}</view>
  5. <view class="desc">适用渠道:{{info.brandName}}</view>
  6. <view class="desc">有效期:{{info.useStartDate}}-{{info.useEndDate}}</view>
  7. <view class="ctrl">
  8. <view class="money"><text>¥</text>{{info.typeMoney || 0}}</view>
  9. <view class="btn">
  10. {{
  11. info.sendType == 0 ? '全场赠券' :
  12. info.sendType == 1 ? '会员赠券' :
  13. info.sendType == 2 ? '购物赠券' :
  14. info.sendType == 3 ? '注册赠' : ''
  15. }}
  16. </view>
  17. </view>
  18. </view>
  19. <view class="explain">
  20. <view class="title"><text>使用说明</text></view>
  21. <view class="desc">{{info.useDesc || '暂无说明'}}</view>
  22. </view>
  23. </view>