|
@@ -28,7 +28,7 @@ export interface InspectedParams {
|
|
|
mainStartScore?: string;
|
|
|
mainEndScore?: string;
|
|
|
questionScore?: string;
|
|
|
- unselective?: string;
|
|
|
+ selectiveStatus?: string;
|
|
|
}
|
|
|
|
|
|
/** 批量复核得到单个学生的复核任务 */
|
|
@@ -40,7 +40,7 @@ export async function getOneOfInspectedTask({
|
|
|
mainStartScore = "",
|
|
|
mainEndScore = "",
|
|
|
questionScore = "",
|
|
|
- unselective = "",
|
|
|
+ selectiveStatus = "",
|
|
|
}: InspectedParams) {
|
|
|
const form = new FormData();
|
|
|
form.append("subjectCode", subjectCode);
|
|
@@ -50,7 +50,7 @@ export async function getOneOfInspectedTask({
|
|
|
form.append("mainStartScore", mainStartScore);
|
|
|
form.append("mainEndScore", mainEndScore);
|
|
|
form.append("questionScore", questionScore);
|
|
|
- form.append("unselective", unselective);
|
|
|
+ form.append("selectiveStatus", selectiveStatus);
|
|
|
return httpApp.post("/admin/exam/inspected/getTask", form);
|
|
|
}
|
|
|
|
|
@@ -63,7 +63,7 @@ export async function getInspectedTaskStatus({
|
|
|
mainStartScore = "",
|
|
|
mainEndScore = "",
|
|
|
questionScore = "",
|
|
|
- unselective = "",
|
|
|
+ selectiveStatus = "",
|
|
|
}: InspectedParams) {
|
|
|
const form = new FormData();
|
|
|
form.append("subjectCode", subjectCode);
|
|
@@ -73,7 +73,7 @@ export async function getInspectedTaskStatus({
|
|
|
form.append("mainStartScore", mainStartScore);
|
|
|
form.append("mainEndScore", mainEndScore);
|
|
|
form.append("questionScore", questionScore);
|
|
|
- form.append("unselective", unselective);
|
|
|
+ form.append("selectiveStatus", selectiveStatus);
|
|
|
return httpApp.post("/admin/exam/inspected/getStatus", form);
|
|
|
}
|
|
|
|