login.js
788 Bytes
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) {
if (data.code === 200) {
location.href = '/life/coupon' + '?' + 'code' + '=' + data.data;
} else {
$('.statu').html(data.message);
$('.statu-mark').show();
$('.statu-box').show();
}
}
});
}
$('.coupon-btn').click(function() {
get();
});
$('.sure').click(function() {
$('.statu-mark').hide();
$('.statu-box').hide();
});