Authored by wenjiekong

修改样式

... ... @@ -94,6 +94,6 @@ exports.verifyStudent = (uid, collegeName, educationDegree, enrollmentYear) => {
education_degree: educationDegree,
enrollment_year: enrollmentYear
};
return api.get('', finalParams);
};
... ...
... ... @@ -354,7 +354,12 @@ $agreenShow.on('click', function() {
$('#stu-province-ul').delegate('li > a', 'click', function() {
clearSelectUl($(this), 'areacode');
var $a = $(this);
if ($a.html() !== $stuProv.html()) {
$stuSchool.html('请选择学校名称');
$('#stu-school').val('');
}
clearSelectUl($a, 'areacode');
});
$('#stu-school-ul').delegate('li > a', 'click', function() {
... ...
... ... @@ -259,6 +259,8 @@
}
.select-group .select-value {
height: 25px;
line-height: 25px;
border: 1px solid #dbdbdb;
padding: 0 25px 0 5px;
background-color: #fff;
... ...