register.page.js
12.2 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
var $ = require('yoho-jquery');
var tip = require('../plugin/tip');
var AsideSlider = require('./aslider');
var STUDENTCOOKIES = 'STUDENTCOOKIES';
var C_ID,
getChannel,
asideSlider = new AsideSlider();//eslint-disable-line
var province,
school,
ruleMap = {
name: {
name: '姓名',
require: true,
regex: /^[\u2E80-\u9FFF]+$/g,
msg: '请输入中文姓名'
},
cert_no: {
name: '身份证号',
require: true,
regex: /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/g,
msg: '身份证号输入错误'
},
college_name: {
name: '学校名称',
require: true
},
education_degree: {
name: '当前学历',
require: true
},
enrollment_year: {
name: '入学年份',
require: true
},
isread: {
name: '同意认证',
is: true,
msg: '请同意有货网学生认证协议'
}
};
require('../common');
getChannel = function functionName() {
var name = window.cookie('_Channel');
return {
boys: 1,
girls: 2,
kids: 3,
lifestyle: 4
}[name] || 1;
};
C_ID = getChannel();
/*
* 用于对规则验证
*/
function isValidate(rules, datas) {
var message = '',
data,
name,
reg,
rule;
datas = datas || {};
for (name in rules) {
if (datas.hasOwnProperty(name)) {
data = datas[name];
rule = rules[name];
if (rule.require && !$.trim(data)) {
message = rule.name + '不可为空';
break;
}
if (rule.regex) {
reg = $.trim(data).match(rule.regex);
if (!reg || (reg && !reg.length)) {
message = rule.msg;
break;
}
}
if (rule.is !== void (0) && data !== rule.is) {
message = rule.msg;
}
} else {
message = 'cookie 存储数据不全';
break;
}
}
return message;
}
/*
* 获取数据
*/
function changeSuccess() {
var data = {
cert_no: $.trim($('#tb_cert_no').val()),
name: $.trim($('#tb_name').val()),
college_name: $.trim($('#s-school-tb').val()),
education_degree: $.trim($('#s-education-tb').val()),
enrollment_year: $.trim($('#s-year-tb').val()),
isread: $('.checkbox', '.s-shenming').hasClass('icon-s-checked')
},
msg;
if (province.selected() && province.selected().areaCode) {
data.procode = province.selected().areaCode;
data.provinceName = $('#s-province-tb').val();
}
msg = isValidate(ruleMap, data);
if (!msg) {
$('.s-submit').addClass('succ');
} else {
$('.s-submit').removeClass('succ');
}
return {
msg: msg,
data: data
};
}
function setFormByCookes(item) {
var msg;
item = item ? JSON.parse(item) : {};
item.cert_no && $('#tb_cert_no').val(item.cert_no);
item.name && $('#tb_name').val(item.name);
item.college_name && $('#s-school-tb').val(item.college_name);
item.education_degree && $('#s-education-tb').val(item.education_degree);
item.enrollment_year && $('#s-year-tb').val(item.enrollment_year);
item.provinceName && $('#s-province-tb').val(item.provinceName);
if (item.procode && item.procode !== 'undefined') {
province.selected().areaCode = item.procode;
province.selected().addresseeName = item.provinceName;
}
if ($.trim($('#s-school-tb').val())) {
$('#s-school-tb').parent('section').attr('aslider-isshow', true);
}
if (item.isread) {
$('.checkbox', '.s-shenming').addClass('icon-s-checked');
}
msg = isValidate(ruleMap, item);
if (!msg) {
$('.s-submit').addClass('succ');
} else {
$('.s-submit').removeClass('succ');
}
}
/*
* 筛选器
*/
function Filter(ele, title, feild, data) {
this.__ele__ = ele;
this.__title__ = title;
this.__data__ = data || null;
this.__select__ = {};
this.__feild__ = feild;
}
Filter.prototype = {
get: function() {
return this.__data__;
},
set: function(data) {
this.__data__ = data;
},
selected: function() {
return this.__select__;
},
init: function(data, key) {
var d,
html;
data = data || this.get();
d = this.adapterData(this.filterData(data, key));
$('.s-items', this.__ele__).html('').html(this.dataToHtml(d));
$('.s-group-zimu', this.__ele__).html('');
if (!key) {
html = '<span class=\'iconfont search-icon empty\'></span>';
Object.keys(d).forEach(function(item) {
html += '<a href=\'javascript:;\'>' + item + '</a>';
});
html += '';
$('.s-group-zimu', this.__ele__).html(html);
}
this.bindEvent();
},
filterData: function(data, key) {
var that = this,
regex;
if (!key) {
return data;
}
return data.filter(function(item) {
regex = new RegExp('^' + key, 'i');
return regex.test(item[that.__feild__]);
});
},
adapterData: function(items) {
var result = {},
map = {};
items = items || this.__data__;
items.forEach(function(item) {
if (item.groupBy) {
if (!result.hasOwnProperty(item.groupBy)) {
result[item.groupBy] = [];
}
result[item.groupBy].push(item);
}
});
Object.keys(result).sort().forEach(function(name) {
map[name] = result[name];
});
return map;
},
dataToHtml: function(data) {
var that = this;
var html = [],
name;
// if (this.__select__ && this.__title__ && this.__select__[this.__feild__]) {
// html.push('<h6 class=\'s-title\'>当前地区</h6>');
// html.push('<div class=\'s-item close\'>' + this.__select__[this.__feild__] + '</div>');
// }
for (name in data) {
if (data.hasOwnProperty(name)) {
html.push('<h6 class=\'s-title\' data-pos=\'' + name + '\'>' + name + '</h6>');
if (data[name].length > 0) {
data[name].forEach(function(item) {
html.push('<div class=\'s-item close\' data-obj=\'' +
JSON.stringify(item) + '\'>' + item[that.__feild__] + '</div>');
});
}
}
}
return html;
},
bindEvent: function() {
var that = this;
$('' + that.__ele__ + ' .s-item').unbind('click').click(function() {
var item = $(this).data('obj'),
name;
that.__select__ = item;
name = that.__ele__.match(/=(\w+)/)[1];
$('#s-' + name + '-tb').val(item[that.__feild__]);
if (name === 'province') {
$('#s-school-tb').val('');
$('[data-aslider-in=\'school|fade\']').attr('aslider-isShow', 'true');
}
changeSuccess();
});
}
};
// $.asideSlider.lastY=100;
province = new Filter('[data-aslider=province]', '当前地区', 'addresseeName');
$.ajax({
url: '/activity/student/province',
cache: true,
success: function(res) {
province.set(res.data);
province.init();
}
});
$(document).on('keyup', '#s-search-provinces', function() {
var name = $.trim($(this).val());
var clear = $(this).next('.s-clear');
var stip = $(this).prev('.s-seach-tip');
province.init(province.get(), name);
if ($(this).val().length > 0) {
clear.show();
} else {
clear.hide();
stip.show();
stip.prev('.s-empty').hide();
}
});
$(document).on('focusin', '#s-search-provinces', function() {
var stip = $(this).prev('.s-seach-tip');
stip.hide();
stip.prev('.s-empty').show();
});
school = new Filter('[data-aslider=school]', null, 'schoolName');
$(document).on('keyup', '#s-search-school', function() {
var name = $.trim($(this).val());
var clear = $(this).next('.s-clear');
var stip = $(this).prev('.s-seach-tip');
school.init(school.get(), name);
if ($(this).val().length > 0) {
clear.show();
} else {
clear.hide();
stip.show();
stip.prev('.s-empty').hide();
}
});
$(document).on('focusin', '#s-search-school', function() {
var stip = $(this).prev('.s-seach-tip');
stip.hide();
stip.prev('.s-empty').show();
});
$('.s-clear').click(function() {
$(this).prev('.s-input-search').val('').keyup();
$(this).hide();
});
window.JI_bilibili = function($el) {
if ($el.selector === '[data-aslider="school"]') {
if (province.selected() && province.selected().areaCode) {
$.get('/activity/student/school?code=' + province.selected().areaCode, function(res) {
school.set(res.data);
school.init();
});
} else {
// $("[data-aslider-in='school|fade']").attr("aslider-isshow","false")
}
}
};
window.JI_getselectvalue = function(type, value) {
if (+type === 1) {
if ($.trim(value)) {
$('#s-education-tb').val($.trim(value));
}
} else {
if ($.trim(value)) {
$('#s-year-tb').val($.trim(value));
}
}
changeSuccess();
};
$('.s-blue').click(function() {
localStorage.setItem(STUDENTCOOKIES, JSON.stringify(changeSuccess().data));
});
$(function() {
setFormByCookes(localStorage.getItem(STUDENTCOOKIES));
});
// data-aslider-in="education|fade"
$(document).on('click', '#s-education .s-item', function() {
$('#s-education-tb').val($.trim($(this).html()));
changeSuccess();
});
$(document).on('click', '#s-year .s-item', function() {
$('#s-year-tb').val($.trim($(this).html()));
changeSuccess();
});
$(document).on('click', '.s-footer .checkbox', function() {
var $that = $(this);
if ($that.hasClass('icon-s-checked')) {
$that.removeClass('icon-s-checked').addClass('icon-s-check');
} else {
$that.removeClass('icon-s-check').addClass('icon-s-checked');
}
changeSuccess();
});
/*
* 数据提交
*/
$('.s-submit').data('isClick', true);
$(document).on('click', '.s-submit', function() {
var obj = changeSuccess(),
FAILURE_CAUSE;
var $that = $(this);
// 存cookie 记录状态
localStorage.setItem(STUDENTCOOKIES, JSON.stringify(obj.data));
if ($that.data('isClick') === false) {
return;
}
$that.data('isClick', false);
if (!obj.msg) {
$.ajax({
url: '/activity/student/join',
type: 'post',
data: obj.data
}).then(function(data) {
if (+data.code === 200) {
if (window._yas && window._yas.sendCustomInfo) {
window._yas.sendCustomInfo({
op: 'YB_STUDENT_ATTCT_SUBMIT',
param: {
C_ID: C_ID,
SRC_ID: 5,
SUBMIT_RES: 1
}
}, true);
}
location.href = data.data;
} else {
$that.data('isClick', true);
tip.show(data.message);
}
});
} else {
tip.show(obj.msg);
$that.data('isClick', true);
if (obj.msg.indexOf('字段为空') > -1) {
FAILURE_CAUSE = 1;
} else if (obj.msg.indexOf('认证协议') > -1) {
FAILURE_CAUSE = 3;
} else {
FAILURE_CAUSE = 2;
}
if (window._yas && window._yas.sendCustomInfo) {
window._yas.sendCustomInfo({
op: 'YB_STUDENT_ATTCT_SUBMIT',
param: {
C_ID: C_ID,
SRC_ID: 5,
SUBMIT_RES: 2,
FAILURE_CAUSE: FAILURE_CAUSE
}
}, true);
}
}
});
$('#tb-is-read').change(function() {
changeSuccess();
});