|
@@ -103,6 +103,12 @@
|
|
|
<el-row class="margin-top-10">
|
|
|
<el-col :span="24">
|
|
|
<el-table :data="examAuditData" border>
|
|
|
+ <el-table-column
|
|
|
+ sortable
|
|
|
+ label="切屏次数"
|
|
|
+ prop="switchScreenCount"
|
|
|
+ width="100"
|
|
|
+ ></el-table-column>
|
|
|
<el-table-column
|
|
|
sortable
|
|
|
label="校验(次)"
|
|
@@ -186,6 +192,29 @@
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+ <el-row class="margin-top-10">
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-table :data="examProcessRecordData" border>
|
|
|
+ <el-table-column
|
|
|
+ sortable
|
|
|
+ label="考试过程"
|
|
|
+ prop="processName"
|
|
|
+ width="150"
|
|
|
+ ></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ sortable
|
|
|
+ label="日期"
|
|
|
+ prop="recordTime"
|
|
|
+ width="100"
|
|
|
+ ></el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ sortable
|
|
|
+ label="客户端ip"
|
|
|
+ prop="sourceIp"
|
|
|
+ ></el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-dialog title="审核" :visible.sync="dialogFormVisible">
|
|
@@ -255,7 +284,8 @@ export default {
|
|
|
},
|
|
|
currentPaths: ["抓拍详情"],
|
|
|
disciplineTypeList: [],
|
|
|
- pendingOperate: false
|
|
|
+ pendingOperate: false,
|
|
|
+ examProcessRecordData: []
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -292,6 +322,18 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+ getExamProcessRecordData() {
|
|
|
+ var param = new URLSearchParams({
|
|
|
+ examRecordDataId: this.examRecordDataId
|
|
|
+ });
|
|
|
+ this.$http
|
|
|
+ .get("/api/ecs_oe_admin/exam/capture/getExamProcessRecords", param)
|
|
|
+ .then(response => {
|
|
|
+ if (response.data) {
|
|
|
+ this.examProcessRecordData.push(response.data);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
listExamCapture() {
|
|
|
var param = new URLSearchParams({
|
|
|
examRecordDataId: this.examRecordDataId
|
|
@@ -400,6 +442,7 @@ export default {
|
|
|
this.getExamAuditData();
|
|
|
this.listExamCapture();
|
|
|
this.getDisciplineTypeList("");
|
|
|
+ this.getExamProcessRecordData();
|
|
|
}
|
|
|
};
|
|
|
</script>
|