check.page.js
1.11 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
require('3party/check.page.css');
require('common');
// 图片验证码
let Validate = require('plugin/validata');
let validate = new Validate('#js-img-check', {
useREM: {
rootFontSize: 40,
picWidth: 150
}
});
validate.init();
$(function() {
$('.submit').on('click', function() {
validate.getResults().then((result) => {
$.extend(result, {pid: window.queryString.pid});
$.ajax({
method: 'POST',
url: '/3party/check/submit',
data: result,
success: function(ret) {
validate.type === 2 && validate.refresh();
if (ret.code === 200) {
if (window.queryString.refer) {
window.location.href = decodeURIComponent(window.queryString.refer);
} else {
window.location.href = '//m.yohobuy.com';
}
} else {
validate.refresh();
}
}
});
});
});
});