/* /** * 服务协议 * @author: zxr * @date: 2016/10/27 */ let $ = require('yoho-jquery'); let appVersion = $('input[name="app_version"]').val(); let yoho; require('common'); yoho = require('yoho-app'); $('.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 { location.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 { location.href = '//m.yohobuy.com/passport/reg/password' + window.location.search + '&selected=N'; } } });