agreement.page.js 1.14 KB
/**
 * 服务协议
 * @author: zxr
 * @date: 2016/10/27
 */
var $ = require('yoho-jquery');
var appVersion = $('input[name="app_version"]').val();

$('.pitch').on('click', function() {
    if ($('.pitch').hasClass('select')) {
        console.log('123')
        $(this).removeClass('select');
        $(this).html('');
    } else {
        $(this).addClass('select');
        $(this).html('');
    }
});

$('.submit-btn').on('click', function() {
    if ($('.pitch').hasClass('select')) {

        if(appVersion === '1') {
            location.href = '//m.yohobuy.com/passport/reg/password' + '?openby:yohobuy={"action":"go.serviceClause","params":{"selected":"Y"}}';
        }else {
            location.href = '//m.yohobuy.com/passport/reg/password' + window.location.search +'&selected=Y';
        }   
    } else {
        if(appVersion === '1') {
            location.href = '//m.yohobuy.com/passport/reg/password' + '?openby:yohobuy={"action":"go.serviceClause","params":{"selected":"N"}}';
        } else {
            location.href = '//m.yohobuy.com/passport/reg/password' + window.location.search +'&selected=N';
        }   
    }
});