couponList.wxml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 ">{{companyName}}</view>
  6. </view>
  7. <view class="desc">
  8. <view class="text-h f16">为提供更优质的服务,{{companyName}}需要获取以下信息:</view>
  9. <view class="text-f ">你的手机号信息</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 {{item['status'] == 1 ?'':'gray'}}" wx:for="{{list}}">
  18. <view class="coupon-img cash-img">
  19. <view class="cash-img-left">
  20. <view class="cil-1">{{item['reduceMoney']}}元</view>
  21. <view class="cil-2">代金券</view>
  22. </view>
  23. <view class="coupon-center">
  24. <view class="coupon-center-name">{{item['reduceMoney'] == 0 ? '无门槛优惠券': item['couponName']}}</view>
  25. <view class="coupon-center-date">{{item['isAll'] == 'yes' ? ' 全国通用': item['storeName']+'门店使用'}}</view>
  26. </view>
  27. <view class="cash-img-right" data-sn="{{item['couponSn']}}" data-status="{{item['status']}}" data-name="{{item['couponName']}}" bindtap="jumpBuy">
  28. {{item['status'] == 1?'立即使用': item['status'] ==2 ? '已经核销' :
  29. '已经作废'}}
  30. </view>
  31. </view>
  32. <!-- <view class="coupon-img discount-img">
  33. <view class="cash-img-left">
  34. <view class="cil-1">¥</view>
  35. <view class="cil-2">10</view>
  36. </view>
  37. <view class="cil-3">lsjfsalk </view>
  38. <view class="cash-img-right">立即使用</view>
  39. </view> -->
  40. </view>
  41. </view>
  42. <view class="discuss-info" wx:if="{{list.length ==0 }}">
  43. <image style="height: 400rpx;width: 400rpx;" src="../../images/no-discuss.png"></image>
  44. <view class="discuss">暂无优惠券</view>
  45. </view>