|
@@ -3,7 +3,7 @@
|
|
<el-header id="capture-detail-header">
|
|
<el-header id="capture-detail-header">
|
|
<LinkTitlesCustom :currentPaths="currentPaths" />
|
|
<LinkTitlesCustom :currentPaths="currentPaths" />
|
|
</el-header>
|
|
</el-header>
|
|
- <el-main style="overflow: unset;margin-left: 20px;" class="el-main-padding">
|
|
|
|
|
|
+ <el-main style="overflow: unset; margin-left: 20px" class="el-main-padding">
|
|
<el-row>
|
|
<el-row>
|
|
<el-col :span="5">
|
|
<el-col :span="5">
|
|
<img :src="studentBasePhotoPath" alt width="180" />
|
|
<img :src="studentBasePhotoPath" alt width="180" />
|
|
@@ -14,7 +14,7 @@
|
|
<el-col :span="8" class="capture-title">
|
|
<el-col :span="8" class="capture-title">
|
|
<span>监考数据ID:{{ examRecordDataId }}</span>
|
|
<span>监考数据ID:{{ examRecordDataId }}</span>
|
|
</el-col>
|
|
</el-col>
|
|
- <el-col :span="16" style="text-align: right;">
|
|
|
|
|
|
+ <el-col :span="16" style="text-align: right">
|
|
<el-button
|
|
<el-button
|
|
size="small"
|
|
size="small"
|
|
v-if="showAudit"
|
|
v-if="showAudit"
|
|
@@ -244,7 +244,7 @@
|
|
></el-option>
|
|
></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- <el-form-item label="详情描述" style="margin-top:15px;">
|
|
|
|
|
|
+ <el-form-item label="详情描述" style="margin-top: 15px">
|
|
<el-input
|
|
<el-input
|
|
v-model="auditForm.disciplineDetail"
|
|
v-model="auditForm.disciplineDetail"
|
|
type="textarea"
|
|
type="textarea"
|
|
@@ -314,7 +314,9 @@ export default {
|
|
.then(response => {
|
|
.then(response => {
|
|
if (response.data) {
|
|
if (response.data) {
|
|
this.showAudit =
|
|
this.showAudit =
|
|
- !isPendingAudit && response.data.isWarn && !response.data.isAudit;
|
|
|
|
|
|
+ isPendingAudit == "false" &&
|
|
|
|
+ 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.syncCapturePhotoPath = response.data.syncCaptureFileUrl;
|