quan.wxml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <view class="container">
  2. <!-- 顶部切换标题 -->
  3. <switchTab arr="{{switchTitle}}"></switchTab>
  4. <!-- end -->
  5. <view class="quan-view">
  6. <view class="quan-list">
  7. <view class="quan-box">
  8. <view class="{{index == 0 ? 'wrapper' : 'wrapper-ed'}}" wx:for="{{list}}" wx:key='index'>
  9. <!-- 左侧box -->
  10. <view class="content">
  11. <view class="{{index == 0 ? 'couponCount' : 'couponCount-ed'}}">火爆</view>
  12. <view class="oilline linwidth160 lineBt"></view>
  13. <view>
  14. <text class="moyfh">¥</text>
  15. <text class="moneyNum">20</text>
  16. </view>
  17. <view class="oilline linwidth160 lineBt"></view>
  18. </view>
  19. <view class="split-line"></view>
  20. <!-- 右侧box -->
  21. <view class="tip">
  22. <view class="oilline linwidth227 lineBt "></view>
  23. <view class="vnameBx">
  24. <view class="couponmaes">{{item.itemName}}</view>
  25. <view class="couponmaes">20元报名优惠券</view>
  26. </view>
  27. <view class="oilline linwidth227 lineBt"></view>
  28. <view class=" {{index == 0 ?'moveCm btnbx':'moveCm-ed btnbx-ed' }}">
  29. <view class="btnw {{index == 0?'btnBgActive':'btnBgGray' }}">
  30. <view wx:if="{{index == 0}}" class="btnn" bindtap="submitCilck">立即领取</view>
  31. <view wx:if="{{index != 0}}" class="btnn-ed">已使用</view>
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>