login.js 1.01 KB
var $ = require('jquery');


$('.notice').click(function() {
    $('.code').show();
    $('.mark').show();
});
$('.close').click(function() {
    $('.code').hide();
    $('.mark').hide();
});

function get() {
    $.ajax({
        type: 'get',
        url: '/index/life/sendCoupon',
        dataType: 'json',
        success: function(data) {
            $('.statu').html(data.message);
            $('.statu-mark').show();
            $('.statu-box').show();
            if (data.code === 200) {
                location.href = '/life/coupon' + '?' + 'code' + '=' + data.data;
            } else if (data.code === 401) {
                $('.successed').show();
                $('.sure').click(function() {
                    location.href = '/life/coupon' + '?' + 'code' + '=' + data.data;
                });
            } else if (data.code === 403) {
                $('.late').show();
            } else {
                $('.faill').show();
            }
        }
    });
}

$('.coupon-btn').click(function() {
    get();
});