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

require('../common');
var yoho = require('../yoho-app'),
    asyncMode = yoho.isiOS,
    android = yoho.isAndroid;


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

$('.submit-btn').on('click', function() {
    if ($('.pitch').hasClass('select')) {
        if (appVersion === '1') {
            let params = {
                action: 'go.serviceClause',
                params: {selected: 'Y'}
            };

            yoho.invokeMethod('go.serviceClause', params.params);

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

            yoho.invokeMethod('go.serviceClause', params.params);
        } else {
            $(this).attr('href', '//m.yohobuy.com/passport/reg/password' + window.location.search + '&selected=N');
        }
    }
});