zhangjie 1 lună în urmă
părinte
comite
44caeee5f6

+ 0 - 4
src/modules/mark/api.js

@@ -231,10 +231,6 @@ export const scoreDetailHistoryExport = (datas) => {
 export const scoreDetailAiCheckList = (datas) => {
   return $postParam("/api/admin/mark/inspected/ai/mark/getTask/count", datas);
 };
-// AI评卷失败待复核数量
-export const scoreDetailAiAbnormalCheckList = (datas) => {
-  return $postParam("/api/admin/mark/inspected/ai/mark/abnormal/count", datas);
-};
 // score manage --------->
 export const scoreListPage = (datas) => {
   return $postParam("/api/admin/mark/archive/score/list", datas);

+ 0 - 29
src/modules/mark/components/ScoreCheckDetail.vue

@@ -256,14 +256,6 @@
           >
             AI智能评卷待复核({{ aiCheckList.length }})
           </el-button>
-          <el-button
-            v-if="checkPrivilege('link', 'InspectedAiMark')"
-            class="ml-2"
-            type="primary"
-            @click="toAiAbnormalCheck"
-          >
-            AI评卷失败待复核({{ aiAbnormalCheckList.length }})
-          </el-button>
           <el-button
             v-if="checkPrivilege('button', 'ScoreExport')"
             class="ml-2"
@@ -449,7 +441,6 @@ import {
   scoreDetailListExport,
   scoreDetailHistoryExport,
   scoreDetailAiCheckList,
-  scoreDetailAiAbnormalCheckList,
 } from "../api";
 import SimpleImagePreview from "@/components/SimpleImagePreview";
 import markMinxin from "../markMinxin";
@@ -501,7 +492,6 @@ export default {
       multipleSelection: [],
       downloading: false,
       aiCheckList: [],
-      aiAbnormalCheckList: [],
       // img view
       curImage: {},
       curImageIndex: 0,
@@ -550,7 +540,6 @@ export default {
     },
     search() {
       this.getAiCheckList();
-      this.getAiAbnormalCheckList();
       this.toPage(1);
     },
     checkActionValid(row) {
@@ -618,24 +607,6 @@ export default {
         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) {
       if (type === "objective") {
         this.toMarkObjectiveAnswer([row.studentId]);