You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
2.3KB

  1. <!--pages/coupon/coupon.wxml-->
  2. <view class="container" style="background-color:#f6f6f6;">
  3. <image class="couponImg" src="../../static/coupon/Coupon1.png"></image>
  4. <view class="detailsBox shadow">
  5. <image class="bottomBg" src="../../static/coupon/bottomBg1.png"></image>
  6. <image class="decorate" src="../../static/coupon/01.png"></image>
  7. <view class="detailsInfo">
  8. <text class="txt1">80元抵100元优惠券</text>
  9. <text class="txt2">购买时间:2020年02月25日</text>
  10. </view>
  11. <view class="detailsRight" wx:if="{{type==2}}">{{totalNums}}<text class="company">张</text>
  12. </view>
  13. <image class="logo" src="../../static/coupon/logo.png" wx:if="{{type==1}}"></image>
  14. </view>
  15. <view class="middleContent shadow">
  16. <view id="couponCheck" class="relative clearfix" wx:if="{{type==1&&state!=2}}">
  17. <image class="couponIcon" src="../../static/coupon/couponIcon.png"></image>
  18. <text class="number">078657</text>
  19. <view class="txt">此券有效</view>
  20. </view>
  21. <view id="couponDetails" class="relative clearfix" wx:if="{{type==1&&state==2}}">
  22. <view class="title">核销详情</view>
  23. <view class="detailsItem">
  24. <view class="sign"></view>
  25. <text class="itemTitle">券码</text>
  26. <text class="itemContent">H0001</text>
  27. </view>
  28. <view class="detailsItem">
  29. <view class="sign"></view>
  30. <text class="itemTitle">类型</text>
  31. <text class="itemContent">80元抵100元券</text>
  32. </view>
  33. <view class="detailsItem">
  34. <view class="sign"></view>
  35. <text class="itemTitle">时间</text>
  36. <text class="itemContent">2020年02月25日</text>
  37. </view>
  38. <view class="state">核销成功</view>
  39. </view>
  40. <view id="vCodeBox" wx:if="{{type==2}}">
  41. <input placeholder="输入短信验证码" placeholder-style="color:#FFFFFF;font-size:30rpx;"></input>
  42. <view class="countBox">
  43. <text>核销</text>
  44. <view class="countContent">{{nums}}
  45. <image class="symbolBox" src="../../static/coupon/symbolLeft.png" style="left:-1rpx;" bindtap="reduceCoupon"></image>
  46. <image class="symbolBox" src="../../static/coupon/symbolRight.png" style="right:-1rpx;" bindtap="addCoupon"></image>
  47. </view>
  48. </view>
  49. </view>
  50. </view>
  51. <button class="btn shadow" bindtap="writeOff">核销</button>
  52. </view>