...
|
...
|
@@ -162,6 +162,7 @@ function clearSelectUl($a, code) { |
|
|
$input.val($a.html());
|
|
|
}
|
|
|
$ul.empty();
|
|
|
$ul.addClass('hide');
|
|
|
$wrap.removeClass('active');
|
|
|
}
|
|
|
|
...
|
...
|
@@ -227,6 +228,7 @@ function loadSelectLi(jsonData, param) { |
|
|
if (data.code === 200) {
|
|
|
fnJson[jsonData.keyData] = data.data;
|
|
|
jsonData.$ul.html(provFn(fnJson));
|
|
|
jsonData.$ul.removeClass('hide');
|
|
|
} else if (data.code === 403) {
|
|
|
location.href = data.data.url;
|
|
|
}
|
...
|
...
|
@@ -426,6 +428,7 @@ $stuYear.on('click', function() { |
|
|
for (i = year - 7; i <= year; i++) {
|
|
|
yearArr.push(i);
|
|
|
}
|
|
|
$ul.removeClass('hide');
|
|
|
$ul.html(provFn({
|
|
|
yearData: yearArr
|
|
|
}));
|
...
|
...
|
|