paymentSuccessed.wxml
1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!-- /*********************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>