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.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | <navbar home back text="兑换码" background="#fff"></navbar>
<view class='couponBox' style="padding-top:{{navigationBarHeight}};margin-top:60rpx;">
  <view class="couponbg">
    <view class="title">{{title}}</view>
    <!-- <view class="subtitle">{{subtitle}}</view> -->
    <image class='line' src='{{topLineUrl}}' mode="widthFix"></image>
    
    <!-- 
        couponorderstatus
        0 未使用
        1 已使用
        2 已过期
        3 已经退款
     -->
    <view class="zhuangtai">
      <image wx:if="{{couponorderstatus==1}}" src="{{wm01Url}}" mode='widthFix'></image>
      <image wx:if="{{couponorderstatus==2}}" src="{{wm02Url}}" mode='widthFix'></image>
      <image wx:if="{{couponorderstatus==3}}" src="{{wm03Url}}" mode='widthFix'></image>
      <image wx:if="{{couponorderstatus==0&&validStatus==0}}" src="{{wm04Url}}" mode='widthFix'></image>
      <view class="panel" wx:if="{{couponorderstatus==0&&validStatus!=0}}">
          <view class="canWrap">
            <canvas canvas-id="qrcode" style="width: 1200rpx; height: 800rpx;" />
          </view>
          <image src="{{tempFilePath}}" mode="aspectFit" />
          <view class="barnum buy"><text>兑换码:</text>{{code}}</view>
      </view>
    </view>
    <image class='line' src='{{btomLineUrl}}' mode="widthFix"></image>
    <!-- <view class="gou">
        <view class="mai">购买须知:</view>
        <view class="remark">{{remark}}</view>
    </view> -->
    <view class='notes'>
      <view>
        <text>购买须知:</text>
      </view>
      <view wx:if="{{curHtml==''}}">
        <text><text class='spot'></text>{{data.remark}}</text>
      </view>
      <view wx:if="{{curHtml!=''}}">
        <rich-text nodes="{{curHtml}}"></rich-text>
      </view>
    </view>
  </view>
  <view class='game' bindtap="gotogame" wx-if="{{showIf}}">
    <view class='game-entry'> 
      <image src="{{staticGamedata.imgUrl}}" class='gameimg' mode='widthFix'></image>
      <text>用户专享神秘礼物</text>
      <text>独家福利,抢完即止</text>
    </view>
  </view>
</view>
 |