|
@@ -7,6 +7,7 @@
|
|
<el-row>
|
|
<el-row>
|
|
<el-col :span="6">
|
|
<el-col :span="6">
|
|
<img :src="studentBasePhotoPath" alt width="180" />
|
|
<img :src="studentBasePhotoPath" alt width="180" />
|
|
|
|
+ <img :src="syncCapturePhotoPath" alt width="180" class="syncPhto" />
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="18">
|
|
<el-col :span="18">
|
|
<el-row>
|
|
<el-row>
|
|
@@ -209,6 +210,7 @@ export default {
|
|
examRecordData: [],
|
|
examRecordData: [],
|
|
capturesList: [],
|
|
capturesList: [],
|
|
studentBasePhotoPath: "",
|
|
studentBasePhotoPath: "",
|
|
|
|
+ syncCapturePhotoPath: "",
|
|
showAudit: false,
|
|
showAudit: false,
|
|
dialogFormVisible: false,
|
|
dialogFormVisible: false,
|
|
auditForm: {
|
|
auditForm: {
|
|
@@ -239,6 +241,7 @@ export default {
|
|
!isPendingAudit && response.data.isWarn && !response.data.isAudit;
|
|
!isPendingAudit && response.data.isWarn && !response.data.isAudit;
|
|
this.examAuditData.push(response.data);
|
|
this.examAuditData.push(response.data);
|
|
var studentId = response.data.studentId;
|
|
var studentId = response.data.studentId;
|
|
|
|
+ this.syncCapturePhotoPath = response.data.syncCaptureFileUrl;
|
|
this.getStudentInfo(studentId);
|
|
this.getStudentInfo(studentId);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
@@ -398,5 +401,11 @@ export default {
|
|
text-align: center;
|
|
text-align: center;
|
|
color: red;
|
|
color: red;
|
|
}
|
|
}
|
|
|
|
+.syncPhto {
|
|
|
|
+ margin-top: 30px;
|
|
|
|
+ display: block;
|
|
|
|
+ width: 180px;
|
|
|
|
+ height: 159px;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|
|
<style scoped src="../style/common.css"></style>
|
|
<style scoped src="../style/common.css"></style>
|