12345678910111213141516171819202122232425 |
- <view class="creditGiftAlert">
- <view class="credit_model"></view>
- <view class="credit_section {{isReady?'creditRed_section':''}}">
- <!-- 信纸 -->
- <view class="xinzhi">
- <view class="title">{{obj.one}}</view>
- <view class="title">{{obj.two}}</view>
- <view class="tishi">你将享受以下特权</view>
- <image class="img" src="{{isReady?imgRed:imgOne}}"></image>
- <view class="imgTxt">{{obj.surprise_name}}</view>
- <image class="zhexian" src="{{isReady?sR:sB}}"></image>
- </view>
- <!-- 信封 -->
- <view class="xinfeng">
- <view class="xinfeng_top"></view>
- <view class="xinfeng_sec">
- <view wx:if="{{isReady}}" class="btn marginB_btn">
- <view wx:if="{{obj.surprise_name=='宝宝纱布手帕'}}" bindtap='getgift'>领取实物礼品</view>
- <view wx:else bindtap="gotoCoupon">查看我的优惠券</view>
- </view>
- <view bindtap="closeGift" class="btn">回到首页</view>
- </view>
- </view>
- </view>
- </view>
|