index.phtml
955 Bytes
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
<html>
<head>
<meta charset="UTF-8">
<title>领券楼层</title>
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
</head>
<body>
<div>
{{#if showTitle}}
<h4>{{title}}</h4>
{{/if}}
{{# coupons}}
<div>
<div><a href=""><img src="{{picUrl}}" alt=""></a></div>
<div>
<div>状态:{{status}} 剩余数量:{{num}}</div>
<button onclick="receiveCoupon()">领券</button>
<div><a href="{{go}}">去逛逛</a></div>
</div>
</div>
{{/ coupons}}
</div>
<script type="application/javascript">
function receiveCoupon() {
$.ajax({
url:'http://m.dev.yohobuy.com/coupon/receiveCoupon',
method:'GET',
data:{id:12},
dataType:'html',
success:function (data) {
alert(data);
},
error:function (error) {
alert(error);
}
});
}
</script>
</body>
</html>