|
@@ -256,14 +256,6 @@
|
|
>
|
|
>
|
|
AI智能评卷待复核({{ aiCheckList.length }})
|
|
AI智能评卷待复核({{ aiCheckList.length }})
|
|
</el-button>
|
|
</el-button>
|
|
- <el-button
|
|
|
|
- v-if="checkPrivilege('link', 'InspectedAiMark')"
|
|
|
|
- class="ml-2"
|
|
|
|
- type="primary"
|
|
|
|
- @click="toAiAbnormalCheck"
|
|
|
|
- >
|
|
|
|
- AI评卷失败待复核({{ aiAbnormalCheckList.length }})
|
|
|
|
- </el-button>
|
|
|
|
<el-button
|
|
<el-button
|
|
v-if="checkPrivilege('button', 'ScoreExport')"
|
|
v-if="checkPrivilege('button', 'ScoreExport')"
|
|
class="ml-2"
|
|
class="ml-2"
|
|
@@ -449,7 +441,6 @@ import {
|
|
scoreDetailListExport,
|
|
scoreDetailListExport,
|
|
scoreDetailHistoryExport,
|
|
scoreDetailHistoryExport,
|
|
scoreDetailAiCheckList,
|
|
scoreDetailAiCheckList,
|
|
- scoreDetailAiAbnormalCheckList,
|
|
|
|
} from "../api";
|
|
} from "../api";
|
|
import SimpleImagePreview from "@/components/SimpleImagePreview";
|
|
import SimpleImagePreview from "@/components/SimpleImagePreview";
|
|
import markMinxin from "../markMinxin";
|
|
import markMinxin from "../markMinxin";
|
|
@@ -501,7 +492,6 @@ export default {
|
|
multipleSelection: [],
|
|
multipleSelection: [],
|
|
downloading: false,
|
|
downloading: false,
|
|
aiCheckList: [],
|
|
aiCheckList: [],
|
|
- aiAbnormalCheckList: [],
|
|
|
|
// img view
|
|
// img view
|
|
curImage: {},
|
|
curImage: {},
|
|
curImageIndex: 0,
|
|
curImageIndex: 0,
|
|
@@ -550,7 +540,6 @@ export default {
|
|
},
|
|
},
|
|
search() {
|
|
search() {
|
|
this.getAiCheckList();
|
|
this.getAiCheckList();
|
|
- this.getAiAbnormalCheckList();
|
|
|
|
this.toPage(1);
|
|
this.toPage(1);
|
|
},
|
|
},
|
|
checkActionValid(row) {
|
|
checkActionValid(row) {
|
|
@@ -618,24 +607,6 @@ export default {
|
|
studentIds: this.aiCheckList,
|
|
studentIds: this.aiCheckList,
|
|
});
|
|
});
|
|
},
|
|
},
|
|
- async getAiAbnormalCheckList() {
|
|
|
|
- const res = await scoreDetailAiAbnormalCheckList({
|
|
|
|
- examId: this.instance.examId,
|
|
|
|
- paperNumber: this.instance.paperNumber,
|
|
|
|
- });
|
|
|
|
- this.aiAbnormalCheckList = (res || []).map((item) => item.studentId);
|
|
|
|
- },
|
|
|
|
- toAiAbnormalCheck() {
|
|
|
|
- if (!this.aiAbnormalCheckList.length) {
|
|
|
|
- this.$message.error("当前无待复核数据");
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
- this.toMarkSubjectiveAnswer({
|
|
|
|
- examId: this.instance.examId,
|
|
|
|
- paperNumber: this.instance.paperNumber,
|
|
|
|
- studentIds: this.aiAbnormalCheckList,
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
toCheckQuestion(row, type) {
|
|
toCheckQuestion(row, type) {
|
|
if (type === "objective") {
|
|
if (type === "objective") {
|
|
this.toMarkObjectiveAnswer([row.studentId]);
|
|
this.toMarkObjectiveAnswer([row.studentId]);
|