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