|
@@ -48,6 +48,7 @@ export interface InspectedParams {
|
|
|
questionScore?: string;
|
|
|
selectiveStatus?: string;
|
|
|
secretNumber?: string;
|
|
|
+ college?: string;
|
|
|
}
|
|
|
|
|
|
/** 批量复核得到单个学生的复核任务 */
|
|
@@ -61,6 +62,7 @@ export async function getOneOfInspectedTask({
|
|
|
questionScore = "",
|
|
|
selectiveStatus = "",
|
|
|
secretNumber = "",
|
|
|
+ college = "",
|
|
|
}: InspectedParams) {
|
|
|
const form = new FormData();
|
|
|
form.append("subjectCode", subjectCode);
|
|
@@ -72,6 +74,7 @@ export async function getOneOfInspectedTask({
|
|
|
form.append("questionScore", questionScore);
|
|
|
form.append("selectiveStatus", selectiveStatus);
|
|
|
form.append("secretNumber", secretNumber);
|
|
|
+ form.append("college", college);
|
|
|
return httpApp.post<Task>("/admin/exam/inspected/getTask", form);
|
|
|
}
|
|
|
|