login.js
1.01 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
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();
});