check.page.js
1.65 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
require('scss/3party/check.page.scss');
require('js/common');
let $ = require('yoho-jquery'),
Validate = require('js/plugin/validata');
let $check = $('#js-img-check');
let baseInfo = {pid: window.queryString.pid};
let validateOptions = {
useREM: {
rootFontSize: 40,
picWidth: 140
}
};
if ($check.data('riskimg')) {
validateOptions.imgSrc = '/passport/img-check-risk.jpg';
baseInfo.apiRiskValidate = true;
}
let validate = new Validate($check, validateOptions);
validate.init();
$(function() {
// 定时监测cookie中refresh_page刷新页面也换验证方式
setInterval(function() {
if (window.cookie('refresh_page') > 0) {
window.setCookie('refresh_page', 0, {
path: '/'
});
window.location.reload();
}
}, 1000);
$('.submit').on('click', function() {
validate.getResults().then((result) => {
$.extend(result, baseInfo);
$.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();
}
}
});
});
});
});