creditGiftAlert.wxml 952 B

12345678910111213141516171819202122232425
  1. <view class="creditGiftAlert">
  2. <view class="credit_model"></view>
  3. <view class="credit_section {{isReady?'creditRed_section':''}}">
  4. <!-- 信纸 -->
  5. <view class="xinzhi">
  6. <view class="title">{{obj.one}}</view>
  7. <view class="title">{{obj.two}}</view>
  8. <view class="tishi">你将享受以下特权</view>
  9. <image class="img" src="{{isReady?imgRed:imgOne}}"></image>
  10. <view class="imgTxt">{{obj.surprise_name}}</view>
  11. <image class="zhexian" src="{{isReady?sR:sB}}"></image>
  12. </view>
  13. <!-- 信封 -->
  14. <view class="xinfeng">
  15. <view class="xinfeng_top"></view>
  16. <view class="xinfeng_sec">
  17. <view wx:if="{{isReady}}" class="btn marginB_btn">
  18. <view wx:if="{{obj.surprise_name=='宝宝纱布手帕'}}" bindtap='getgift'>领取实物礼品</view>
  19. <view wx:else bindtap="gotoCoupon">查看我的优惠券</view>
  20. </view>
  21. <view bindtap="closeGift" class="btn">回到首页</view>
  22. </view>
  23. </view>
  24. </view>
  25. </view>