|
@@ -44,6 +44,7 @@ export async function getOneOfInspectedTaskOfLibraryInspect({
|
|
startScore,
|
|
startScore,
|
|
endScore,
|
|
endScore,
|
|
questionScore,
|
|
questionScore,
|
|
|
|
+ unselective,
|
|
}: {
|
|
}: {
|
|
subjectCode?: string;
|
|
subjectCode?: string;
|
|
groupNumber?: string;
|
|
groupNumber?: string;
|
|
@@ -53,6 +54,7 @@ export async function getOneOfInspectedTaskOfLibraryInspect({
|
|
startScore?: string;
|
|
startScore?: string;
|
|
endScore?: string;
|
|
endScore?: string;
|
|
questionScore?: string;
|
|
questionScore?: string;
|
|
|
|
+ unselective?: string;
|
|
}) {
|
|
}) {
|
|
const form = new FormData();
|
|
const form = new FormData();
|
|
subjectCode && form.append("subjectCode", subjectCode);
|
|
subjectCode && form.append("subjectCode", subjectCode);
|
|
@@ -63,6 +65,7 @@ export async function getOneOfInspectedTaskOfLibraryInspect({
|
|
startScore && form.append("startScore", startScore);
|
|
startScore && form.append("startScore", startScore);
|
|
endScore && form.append("endScore", endScore);
|
|
endScore && form.append("endScore", endScore);
|
|
questionScore && form.append("questionScore", questionScore);
|
|
questionScore && form.append("questionScore", questionScore);
|
|
|
|
+ unselective && form.append("unselective", unselective);
|
|
return httpApp.post<Task>("/admin/exam/library/getTask", form);
|
|
return httpApp.post<Task>("/admin/exam/library/getTask", form);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -76,6 +79,7 @@ export async function getInspectedTaskStatusOfLibraryInspect({
|
|
startScore,
|
|
startScore,
|
|
endScore,
|
|
endScore,
|
|
questionScore,
|
|
questionScore,
|
|
|
|
+ unselective,
|
|
}: {
|
|
}: {
|
|
subjectCode: string;
|
|
subjectCode: string;
|
|
groupNumber: string;
|
|
groupNumber: string;
|
|
@@ -85,6 +89,7 @@ export async function getInspectedTaskStatusOfLibraryInspect({
|
|
startScore?: string;
|
|
startScore?: string;
|
|
endScore?: string;
|
|
endScore?: string;
|
|
questionScore?: string;
|
|
questionScore?: string;
|
|
|
|
+ unselective?: string;
|
|
}) {
|
|
}) {
|
|
const form = new FormData();
|
|
const form = new FormData();
|
|
form.append("subjectCode", subjectCode);
|
|
form.append("subjectCode", subjectCode);
|
|
@@ -95,6 +100,7 @@ export async function getInspectedTaskStatusOfLibraryInspect({
|
|
startScore && form.append("startScore", startScore);
|
|
startScore && form.append("startScore", startScore);
|
|
endScore && form.append("endScore", endScore);
|
|
endScore && form.append("endScore", endScore);
|
|
questionScore && form.append("questionScore", questionScore);
|
|
questionScore && form.append("questionScore", questionScore);
|
|
|
|
+ unselective && form.append("unselective", unselective);
|
|
return httpApp.post<{ valid: boolean; totalCount: number }>(
|
|
return httpApp.post<{ valid: boolean; totalCount: number }>(
|
|
"/admin/exam/library/getStatus",
|
|
"/admin/exam/library/getStatus",
|
|
form
|
|
form
|