index.phtml 955 Bytes
<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>