agreement.page.js
1.33 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
/**
* 服务协议
* @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');
}
}
});