Authored by 周少峰

Merge branch 'feature/studentsTwo' into release/5.1

... ... @@ -71,6 +71,7 @@
<span class="hide result-uid">{{uid}}</span>
<span class="hide result-birthDay">{{birthDay}}</span>
<span class="hide result-sex">{{sex}}</span>
<span class="hide result-provName">{{provName}}</span>
<span class="hide result-collegeName">{{collegeName}}</span>
<span class="hide result-educationDegree">{{educationDegree}}</span>
<span class="hide result-enrollmentYear">{{enrollmentYear}}</span>
... ...
... ... @@ -635,13 +635,14 @@ $(function() {
// xls-4学生认证成功埋点
givePoint('YB_STUDENT_ATTCT_RESULT', {
SRC_ID: 5,
SUBMIT_RES: 1,
ATTCT_RES: 1,
ATTCT_INFO: {
birthDay: $('.identity-back-wrap .result-birthDay').html(),
birth: $('.identity-back-wrap .result-birthDay').html(),
sex: $('.identity-back-wrap .result-sex').html(),
collegeName: $('.identity-back-wrap .result-collegeName').html(),
educationDegree: $('.identity-back-wrap .result-educationDegree').html(),
enrollmentYear: $('.identity-back-wrap .result-enrollmentYear').html()
college_province: $('.identity-back-wrap .result-provName').html(),
college_name: $('.identity-back-wrap .result-collegeName').html(),
education_degree: $('.identity-back-wrap .result-educationDegree').html(),
enrollment_year: $('.identity-back-wrap .result-enrollmentYear').html()
}
});
}
... ... @@ -650,7 +651,7 @@ $(function() {
// xls-4学生认证失败埋点
givePoint('YB_STUDENT_ATTCT_RESULT', {
SRC_ID: 5,
SUBMIT_RES: 2,
ATTCT_RES: 2,
FAILURE_CAUSE: $('#identity-fail-text').html()
});
}
... ...