Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

coupon.wxml 1.3KB

il y a 5 ans
il y a 5 ans
il y a 5 ans
il y a 5 ans
il y a 5 ans
il y a 5 ans
il y a 5 ans
il y a 5 ans
il y a 5 ans
il y a 5 ans
il y a 5 ans
1234567891011121314151617181920212223
  1. <!--pages/coupon/coupon.wxml-->
  2. <view class="container" style="background-color:#f6f6f6;">
  3. <image class="couponImg" src="{{coupon_img_large}}" mode='aspectFill'></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" wx:if="{{couponType==1}}">{{original_price+'元代金券'}}</text>
  9. <text class="txt1" wx:else>{{coupon_name_detail}}</text>
  10. <text class="txt2">{{coupon_memo}}</text>
  11. </view>
  12. <view class="detailsRight"><image class="txt" src="../../static/coupon/txt.png"></image>{{totalNums}}<text class="company">张</text>
  13. </view>
  14. </view>
  15. <view class="writeOffBox">核销
  16. <view class="writeOffNumsBox">
  17. <input class="couponsInput" type="number" value="{{nums}}" bindinput="changeNums" />
  18. <image class="operation" style="left:0;" src="../../static/coupon/symbolLeft.png" catchtap="reduceCoupon"></image>
  19. <image class="operation" style="right:0;" src="../../static/coupon/symbolRight.png" catchtap="addCoupon"></image>
  20. </view>
  21. </view>
  22. <button class="btn shadow {{writeOffing||totalNums==0?'select':''}}" bindtap="writeOff">核销</button>
  23. </view>