couponList.wxml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <view class="container" wx:if="{{!userInfo.mobile}}">
  2. <view class="logo">
  3. <image class="logo-img" src="../../images/logo.jpg" >
  4. </image>
  5. <view class="info " style="color: #fff;">{{companyName}}</view>
  6. </view>
  7. <view class="desc">
  8. <view class="text-h f16" style="font-size: 14px;color: #fff;">为提供更优质的服务,{{companyName}}需要获取以下信息:</view>
  9. <view class="text-f " style="font-size: 14px;color: #fff;">你的手机号信息</view>
  10. </view>
  11. <view class="confirm">
  12. <button open-type="getPhoneNumber" catchgetphonenumber="getMobile" type="primary" >获取手机号</button>
  13. <!-- <button open-type="getUserInfo" bindgetuserinfo="getInfo" type="primary">确认</button> -->
  14. </view>
  15. </view>
  16. <view class="cash" wx:if="{{userInfo.mobile && list.length !=0 }}">
  17. <view class="coupon-list " wx:for="{{list}}">
  18. <view class="coupon-img cash-img {{item['status'] == 1 ?'':'gray'}}">
  19. <view class="cash-img-left">
  20. <view class="cil-1" wx:if="{{item['couponType'] == 2}}">{{item['discount']}}折</view>
  21. <view class="cil-1" wx:else>{{item['reduceMoney']}}元</view>
  22. <view class="cil-2">{{item['couponType'] == 2?'折扣券':'代金券'}}</view>
  23. </view>
  24. <view class="coupon-center">
  25. <view class="coupon-center-name">{{item['reduceMoney'] == 0 ? '无门槛优惠券': item['couponName']}}</view>
  26. <view class="coupon-center-date">{{item['isAll'] == 'yes' ? ' 全国门店通用': '仅'+item['storeName']+'门店使用'}}</view>
  27. </view>
  28. <view class="cash-img-right" data-sn="{{item['couponSn']}}" data-status="{{item['status']}}" data-name="{{item['couponName']}}" bindtap="jumpBuy">
  29. {{item['status'] == 1?'立即使用': item['status'] ==2 ? '已经核销' :
  30. '已经作废'}}
  31. </view>
  32. </view>
  33. <!-- <view class="coupon-img discount-img">
  34. <view class="cash-img-left">
  35. <view class="cil-1">¥</view>
  36. <view class="cil-2">10</view>
  37. </view>
  38. <view class="cil-3">lsjfsalk </view>
  39. <view class="cash-img-right">立即使用</view>
  40. </view> -->
  41. </view>
  42. </view>
  43. <view class="discuss-info" wx:if="{{list.length ==0 }}">
  44. <image style="height: 400rpx;width: 400rpx;" src="../../images/no-discuss.png"></image>
  45. <view class="discuss">暂无优惠券</view>
  46. </view>