paymentSuccessed.wxml 1.48 KB
<!-- /*********************alert*************************/ -->
  
<block wx:if="{{showModalStatus}}">
    <view class="drawer_screenBG"> 
    </view> 


  <view class="drawer_screen"> 
    <view animation="{{animationData}}" class="drawer_box"> 
      <image open-type="share" class="drawer_box_backImage" src="{{activityBanner}}">
      </image>     
       <button open-type="share" class="drawer_box_backImageButton"></button>     
      <image class="dismissImage" src="{{closeImage}}" bindtap="hideAlert"></image>    
    </view> 
  </view> 
</block>

<!-- /*********************end*************************/ -->

<block wx:if="{{hasSuc}}">
  <view class="tip">
    <image class="icon" src="{{bindTipsIcon}}"></image>
    <text class="detailText">{{detailText}}</text>
  </view> 

  <view class="detail">
    <image class="sucIcon" src="{{pay_successIcon}}">
    </image> 
    <text class="sucText">支付成功</text>
    <text class="sucPriceText">订单金额¥{{price}}</text>

    <view class="buttonView">
      <view class="button1" bindtap="suibianTapped">
        <text class="buttonText1">随便逛逛</text>
      </view> 
      <view class="button2"  bindtap="detailTapped">
        <text class="buttonText2">查看订单</text>
      </view> 
    </view>  
  </view> 
  <block wx:if="{{token}}">
    <view class="adView">
      <image class="ad" src="{{activityBanner}}">
      </image>  
      <button open-type="share" class="adButton"></button>       
    </view>
  </block>
</block>