|
@@ -100,7 +100,7 @@
|
|
|
</el-table>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
- <el-row class="margin-top-10">
|
|
|
+ <el-row class="margin-top-20">
|
|
|
<el-col :span="24">
|
|
|
<el-table :data="examAuditData" border>
|
|
|
<el-table-column
|
|
@@ -192,20 +192,20 @@
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
- <el-row class="margin-top-10">
|
|
|
+ <el-row class="margin-top-20">
|
|
|
<el-col :span="24">
|
|
|
<el-table :data="examProcessRecordData" border>
|
|
|
<el-table-column
|
|
|
sortable
|
|
|
label="考试过程"
|
|
|
prop="processName"
|
|
|
- width="150"
|
|
|
+ width="200"
|
|
|
></el-table-column>
|
|
|
<el-table-column
|
|
|
sortable
|
|
|
label="日期"
|
|
|
prop="recordTime"
|
|
|
- width="100"
|
|
|
+ width="200"
|
|
|
></el-table-column>
|
|
|
<el-table-column
|
|
|
sortable
|
|
@@ -323,16 +323,17 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
getExamProcessRecordData() {
|
|
|
- var param = new URLSearchParams({
|
|
|
- examRecordDataId: this.examRecordDataId
|
|
|
+ // var param = new URLSearchParams({
|
|
|
+ // examRecordDataId: this.examRecordDataId,
|
|
|
+ // });
|
|
|
+ let url =
|
|
|
+ "/api/ecs_oe_admin/exam/capture/getExamProcessRecords?examRecordDataId=" +
|
|
|
+ this.examRecordDataId;
|
|
|
+ this.$http.get(url).then(response => {
|
|
|
+ if (response.data) {
|
|
|
+ this.examProcessRecordData = response.data;
|
|
|
+ }
|
|
|
});
|
|
|
- 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({
|