check.page.js 1.65 KB
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();
                    }
                }
            });
        });
    });
});